/** * @fileoverview React hook for Policy Table — thin wrapper over `useTable`. */ import { type PolicyTable, type PolicyTableOptions, type PolicyColumnDef, type PolicyRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UsePolicyTableResult = UseTableResult, PolicyTable>; /** * React hook for creating and managing a policy table. * See `useTable` for the underlying primitive. */ export declare function usePolicyTable(options: PolicyTableOptions): UsePolicyTableResult; //# sourceMappingURL=use-policy-table.d.ts.map