/** * @fileoverview React hook for Case Table — thin wrapper over `useTable`. */ import { type CaseTable, type CaseTableOptions, type CaseColumnDef, type CaseRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseCaseTableResult = UseTableResult, CaseTable>; /** * React hook for creating and managing a case table. * See `useTable` for the underlying primitive. */ export declare function useCaseTable(options: CaseTableOptions): UseCaseTableResult; //# sourceMappingURL=use-case-table.d.ts.map