/** * @fileoverview React hook for Infinite Customer Table — thin wrapper over `useTable`. */ import { type InfiniteCustomerTable, type CustomerTableOptions, type CustomerColumnDef, type CustomerRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteCustomerTableResult = UseTableResult, InfiniteCustomerTable>; /** * React hook for an infinite scroll customer table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteCustomerTable(options: CustomerTableOptions): UseInfiniteCustomerTableResult; //# sourceMappingURL=use-infinite-customer-table.d.ts.map