/** * @fileoverview React hook for Infinite Proposal Table — thin wrapper over `useTable`. */ import { type InfiniteProposalTable, type ProposalTableOptions, type ProposalColumnDef, type ProposalRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteProposalTableResult = UseTableResult, InfiniteProposalTable>; /** * React hook for an infinite scroll proposal table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteProposalTable(options: ProposalTableOptions): UseInfiniteProposalTableResult; //# sourceMappingURL=use-infinite-proposal-table.d.ts.map