import { GLODataType } from '@glossa-glo/data-types'; import AST from './AST'; import VariableAST from './VariableAST'; export default class ConstantDeclarationAST extends AST { readonly variable: VariableAST; readonly expression: AST; type: typeof GLODataType | null; value: GLODataType | null; constructor(variable: VariableAST, expression: AST); } //# sourceMappingURL=ConstantDeclarationAST.d.ts.map