import type * as ElevenLabs from "../index"; /** * Response model for oauth2 client creds */ export interface OAuth2ClientCredsResponse { name: string; provider: string; clientId: string; tokenUrl: string; scopes?: string[]; extraParams?: Record; /** If True, send client credentials in Authorization header as Basic Auth instead of request body */ basicAuthInHeader?: boolean; id: string; usedBy?: ElevenLabs.AuthConnectionDependencies; }