import { StandardDataType } from '../../main/StandardDataSource'; interface AstNode { name: string; templateArgs: AstNode[]; } /** ast 转换为标准类型 */ export declare function parseAst2StandardDataType(ast: AstNode, defNames: string[], classTemplateArgs?: StandardDataType[]): StandardDataType; export declare function compileTemplate(template: string, keyword?: string): AstNode; export {};