/** * @fileoverview React hook for Infinite Case Table — thin wrapper over `useTable`. */ import { type InfiniteCaseTable, type CaseTableOptions, type CaseColumnDef, type CaseRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteCaseTableResult = UseTableResult, InfiniteCaseTable>; /** * React hook for an infinite scroll case table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteCaseTable(options: CaseTableOptions): UseInfiniteCaseTableResult; //# sourceMappingURL=use-infinite-case-table.d.ts.map