/** * @fileoverview React hook for OAuth Client Table — thin wrapper over `useTable`. */ import { type OAuthClientTable, type OAuthClientTableOptions, type OAuthClientColumnDef, type OAuthClientRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseOAuthClientTableResult = UseTableResult, OAuthClientTable>; /** * React hook for creating and managing a oauth client table. * Data is loaded once and filtered/searched/sorted/paginated in memory. * See `useTable` for the underlying primitive. */ export declare function useOAuthClientTable(options: OAuthClientTableOptions): UseOAuthClientTableResult; //# sourceMappingURL=use-oauth-client-table.d.ts.map