import type * as ElevenLabs from "../index"; /** * Response model for Custom Header Auth auth connections */ export interface CustomHeaderAuthResponse { name: string; provider: string; /** The name of the header to use for authentication (e.g., 'x-api-key') */ headerName: string; id: string; usedBy?: ElevenLabs.AuthConnectionDependencies; }