import { GLODataType } from '@glossa-glo/data-types'; import AST from './AST'; import type { SymbolScope } from '@glossa-glo/symbol'; export default class VariableAST extends AST { readonly name: string; constructor(name: string); promote(target: typeof GLODataType, scope: SymbolScope): this; } //# sourceMappingURL=VariableAST.d.ts.map