/** * @fileoverview React hook for AgentUser Table — thin wrapper over `useTable`. */ import { type AgentUserTable, type AgentUserTableOptions, type AgentUserColumnDef, type AgentUserRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseAgentUserTableResult = UseTableResult, AgentUserTable>; /** * React hook for creating and managing a agentuser table. * See `useTable` for the underlying primitive. */ export declare function useAgentUserTable(options: AgentUserTableOptions): UseAgentUserTableResult; //# sourceMappingURL=use-agent-user-table.d.ts.map