import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AuthConnectionDependencies } from "./AuthConnectionDependencies"; export declare const OAuth2ClientCredsResponse: core.serialization.ObjectSchema; export declare namespace OAuth2ClientCredsResponse { interface Raw { name: string; provider: string; client_id: string; token_url: string; scopes?: string[] | null; extra_params?: Record | null; basic_auth_in_header?: boolean | null; id: string; used_by?: AuthConnectionDependencies.Raw | null; } }