UNPKG

@project44-manifest/react

Version:

Manifest Design System react components

11 lines 454 B
/// <reference types="react" /> import { RowData, Table } from '@tanstack/react-table'; export interface DataTableContext<TData extends RowData = unknown> { options: { enableStickyHeader?: boolean; }; rowCount?: number; table: Table<TData>; } export declare const DataTableProvider: import("react").Provider<DataTableContext<unknown>>, useDataTable: () => DataTableContext<unknown>; //# sourceMappingURL=DataTable.context.d.ts.map