/**
 * Copyright IBM Corp. 2024, 2025
 */
export interface OAuthClientResponse {
    success: boolean;
    data: {
        clientID: string;
        callbackURL: string;
        providerOAuthURL: string;
    };
}
//# sourceMappingURL=oauth-client-response.model.d.ts.map