/** * @fileoverview React hook for Infinite Agent Insurance Company Table — thin wrapper over `useTable`. */ import { type InfiniteAgentInsuranceCompanyTable, type AgentInsuranceCompanyTableOptions, type AgentInsuranceCompanyColumnDef, type AgentInsuranceCompanyRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteAgentInsuranceCompanyTableResult = UseTableResult, InfiniteAgentInsuranceCompanyTable>; /** * React hook for an infinite scroll agent insurance company table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteAgentInsuranceCompanyTable(options: AgentInsuranceCompanyTableOptions): UseInfiniteAgentInsuranceCompanyTableResult; //# sourceMappingURL=use-infinite-agent-insurance-company-table.d.ts.map