import type * as ElevenLabs from "../index"; /** * Response model for OAuth2 refresh-token-grant auth connections */ export interface RefreshTokenAuthResponse { name: string; provider: string; clientId: string; tokenUrl: string; scopes?: string[]; extraParams?: Record; id: string; usedBy?: ElevenLabs.AuthConnectionDependencies; status?: ElevenLabs.AuthConnectionStatus; statusDetail?: string; statusUpdatedAt?: string; }