import { TableOptions, RowData } from '@tanstack/table-core'; import { MaybeRef } from 'vue'; export * from '@tanstack/table-core'; export type TableOptionsWithReactiveData = Omit, 'data'> & { data: MaybeRef; }; export declare const FlexRender: import("vue").DefineComponent, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly>>, { readonly props?: any; readonly render?: any; }, {}>; export declare function useVueTable(initialOptions: TableOptionsWithReactiveData): import("@tanstack/table-core").Table;