/** * @fileoverview React hook for Infinite OAuth Client Table — thin wrapper over `useTable`. */ import { type InfiniteOAuthClientTable, type OAuthClientTableOptions, type OAuthClientColumnDef, type OAuthClientRowType } from '@insurup/table-adapter-core'; import { type UseTableResult } from './use-table.js'; export type UseInfiniteOAuthClientTableResult = UseTableResult, InfiniteOAuthClientTable>; /** * React hook for an infinite scroll oauth client table. * Rows accumulate across page fetches. See `useTable` for lifecycle details. */ export declare function useInfiniteOAuthClientTable(options: OAuthClientTableOptions): UseInfiniteOAuthClientTableResult; //# sourceMappingURL=use-infinite-oauth-client-table.d.ts.map