declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: Partial<Record<any, (_: {
        scope: any;
        row: any;
    }) => any>> & Partial<Record<any, (_: {
        scope: any;
        row: any;
    }) => any>> & {
        tableHeaderLeft?(_: {}): any;
        tableHeaderRight?(_: {}): any;
        default?(_: {
            data: {
                dataSource: any[];
                columns: any[];
            };
        }): any;
        default?(_: {
            data: {
                dataSource: any[];
            };
        }): any;
    };
    refs: {
        treeRef: unknown;
        tableRef: unknown;
    };
    rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    data: {
        type: ObjectConstructor;
        default: () => {};
    };
}>, {
    queryDataList: (params?: any) => Promise<void>;
    tableRef: any;
    dataList: () => any[];
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    data: {
        type: ObjectConstructor;
        default: () => {};
    };
}>> & Readonly<{}>, {
    data: Record<string, any>;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
    treeRef: unknown;
    tableRef: unknown;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
