import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AuthConnectionDependencies } from "./AuthConnectionDependencies"; import { OAuth2JwtResponseAlgorithm } from "./OAuth2JwtResponseAlgorithm"; export declare const OAuth2JwtResponse: core.serialization.ObjectSchema; export declare namespace OAuth2JwtResponse { interface Raw { name: string; provider: string; algorithm?: OAuth2JwtResponseAlgorithm.Raw | null; key_id?: string | null; issuer: string; audience: string; subject: string; expiration_seconds?: number | null; extra_params?: Record | null; token_url: string; scopes?: string[] | null; id: string; used_by?: AuthConnectionDependencies.Raw | null; } }