import type { BaseClientOptions } from "../../../../BaseClient"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient"; import { V2Client } from "../resources/v2/client/Client"; export declare namespace CredentialingClient { type Options = BaseClientOptions; } export declare class CredentialingClient { protected readonly _options: NormalizedClientOptionsWithAuth; protected _v2: V2Client | undefined; constructor(options: CredentialingClient.Options); get v2(): V2Client; }