/** * @fileoverview React hook for Infinite AgentUser Table — thin wrapper over `useTable`. */ import { type InfiniteAgentUserTable, type AgentUserTableOptions, type AgentUserColumnDef, type AgentUserRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteAgentUserTableResult = UseTableResult, InfiniteAgentUserTable>; /** * React hook for an infinite scroll agentuser table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteAgentUserTable(options: AgentUserTableOptions): UseInfiniteAgentUserTableResult; //# sourceMappingURL=use-infinite-agent-user-table.d.ts.map