import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; export declare const CreateOAuth2ClientCredsRequest: core.serialization.ObjectSchema; export declare namespace CreateOAuth2ClientCredsRequest { 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; client_secret: string; custom_headers?: Record | null; } }