import type { ILogger } from './lexer'; export type IAst = IAstNode[]; export type IAstNode = moo.Token & { children?: IAstNode[]; }; export declare function createAst(contract: string, logger?: ILogger): IAst; //# sourceMappingURL=createAst.d.ts.map