import { type BaseRecord, type HttpError, type useTableProps as useTablePropsCore, type useTableReturnType as useTableReturnTypeCore } from "@refinedev/core"; import { type TableOptions, type Table } from "@tanstack/react-table"; export type UseTableReturnType = { reactTable: Table; refineCore: useTableReturnTypeCore; }; export type UseTableProps = { /** * Configuration object for the core of the [useTable](/docs/api-reference/core/hooks/useTable/) * @type [`useTablePropsCore`](/docs/api-reference/core/hooks/useTable/#properties) */ refineCoreProps?: useTablePropsCore; } & Pick, "columns"> & Partial, "columns">>; export declare function useTable({ refineCoreProps, initialState: reactTableInitialState, ...rest }: UseTableProps): UseTableReturnType; //# sourceMappingURL=index.d.ts.map