/** * 表格生成器 * 提供renderTable方法进行渲染 */ interface ITableBuilderParams { renderMethodName?: string; reportApi?: Function; useCustomHeight?: boolean; } export declare function TableBuilder(customMixin?: any, params?: ITableBuilderParams): import("vue-class-component").VueDecorator; export {};