/** * @fileoverview React hook for Infinite Agent Branch Table — thin wrapper over `useTable`. */ import { type InfiniteAgentBranchTable, type AgentBranchTableOptions, type AgentBranchColumnDef, type AgentBranchRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteAgentBranchTableResult = UseTableResult, InfiniteAgentBranchTable>; /** * React hook for an infinite scroll agent branch table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteAgentBranchTable(options: AgentBranchTableOptions): UseInfiniteAgentBranchTableResult; //# sourceMappingURL=use-infinite-agent-branch-table.d.ts.map