import { GLODataType } from '@glossa-glo/data-types'; import AST from './AST'; export default class FunctionCallAST extends AST { readonly name: string; readonly args: AST[]; constructor(name: string, args: AST[]); runtimePromote: null | typeof GLODataType; promote(target: typeof GLODataType): this; } //# sourceMappingURL=FunctionCallAST.d.ts.map