/** * @fileoverview React hook for Agent Insurance Company Table — thin wrapper over `useTable`. */ import { type AgentInsuranceCompanyTable, type AgentInsuranceCompanyTableOptions, type AgentInsuranceCompanyColumnDef, type AgentInsuranceCompanyRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseAgentInsuranceCompanyTableResult = UseTableResult, AgentInsuranceCompanyTable>; /** * React hook for creating and managing a agent insurance company table. * Data is loaded once and filtered/searched/sorted/paginated in memory. * See `useTable` for the underlying primitive. */ export declare function useAgentInsuranceCompanyTable(options: AgentInsuranceCompanyTableOptions): UseAgentInsuranceCompanyTableResult; //# sourceMappingURL=use-agent-insurance-company-table.d.ts.map