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