/** * @fileoverview React hook for Infinite Agent Template Table — thin wrapper over `useTable`. */ import { type InfiniteAgentTemplateTable, type AgentTemplateTableOptions, type AgentTemplateColumnDef, type AgentTemplateRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteAgentTemplateTableResult = UseTableResult, InfiniteAgentTemplateTable>; /** * React hook for an infinite scroll agent template table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteAgentTemplateTable(options: AgentTemplateTableOptions): UseInfiniteAgentTemplateTableResult; //# sourceMappingURL=use-infinite-agent-template-table.d.ts.map