/** * @fileoverview React hook for Proposal Table — thin wrapper over `useTable`. */ import { type ProposalTable, type ProposalTableOptions, type ProposalColumnDef, type ProposalRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseProposalTableResult = UseTableResult, ProposalTable>; /** * React hook for creating and managing a proposal table. * See `useTable` for the underlying primitive. */ export declare function useProposalTable(options: ProposalTableOptions): UseProposalTableResult; //# sourceMappingURL=use-proposal-table.d.ts.map