import type { DataType } from "../../plugins/typed-sockets"; export type Variable = { name: string; value: unknown; type: DataType; isArray: boolean; exposed: boolean; id: string; highlighted: boolean; }; export declare const possibleVarTypes: DataType[];