import { OAuth2ClientCredentials } from "./transform.mjs"; import { z } from "zod"; //#region src/cli/commands/oauth2client/get.d.ts export interface GetOAuth2ClientOptions { name: string; workspaceId?: string; profile?: string; configPath?: string; } /** * Get OAuth2 client credentials for the current application. * @param options - OAuth2 client lookup options * @returns OAuth2 client credentials */ export declare function getOAuth2Client(options: GetOAuth2ClientOptions): Promise; //#endregion