import type { ClerkPaginationRequest } from '@clerk/shared/types'; import type { Client } from '../resources/Client'; import type { PaginatedResourceResponse } from '../resources/Deserializer'; import type { HandshakePayload } from '../resources/HandshakePayload'; import { AbstractAPI } from './AbstractApi'; type GetHandshakePayloadParams = { nonce: string; }; export declare class ClientAPI extends AbstractAPI { getClientList(params?: ClerkPaginationRequest): Promise>; getClient(clientId: string): Promise; verifyClient(token: string): Promise; getHandshakePayload(queryParams: GetHandshakePayloadParams): Promise; } export {}; //# sourceMappingURL=ClientApi.d.ts.map