/** * @fileoverview React hook for Agent Template Table — thin wrapper over `useTable`. */ import { type AgentTemplateTable, type AgentTemplateTableOptions, type AgentTemplateColumnDef, type AgentTemplateRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseAgentTemplateTableResult = UseTableResult, AgentTemplateTable>; /** * React hook for creating and managing a agent template table. * Data is loaded once and filtered/searched/sorted/paginated in memory. * See `useTable` for the underlying primitive. */ export declare function useAgentTemplateTable(options: AgentTemplateTableOptions): UseAgentTemplateTableResult; //# sourceMappingURL=use-agent-template-table.d.ts.map