declare type IAxmlInfoType = { defaultRender: (this: Record, data: Record) => any; isComplexComponents?: boolean; $morId?: string; }; /** * 组件构造函数 * @param axmlInfo 初始化函数 */ export declare function Component(axmlInfo: IAxmlInfoType): any; export declare function Page(axmlInfo: IAxmlInfoType, config: Record): any; export {};