/** * @fileoverview React hook for Customer Table — thin wrapper over `useTable`. */ import { type CustomerTable, type CustomerTableOptions, type CustomerColumnDef, type CustomerRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseCustomerTableResult = UseTableResult, CustomerTable>; /** * React hook for creating and managing a customer table. * See `useTable` for the underlying primitive. */ export declare function useCustomerTable(options: CustomerTableOptions): UseCustomerTableResult; //# sourceMappingURL=use-customer-table.d.ts.map