import { nanoid } from "nanoid"; export function newVariableId(): string { return `var_${nanoid(8)}`; }