import type * as ElevenLabs from "../index"; export interface BackgroundSoundConfigWorkflowOverride { /** The type of background sound source. */ sourceType?: ElevenLabs.BackgroundSoundSourceType; /** Identifier for the sound source. */ sourceId?: ElevenLabs.BackgroundSoundPresetId; /** Volume level for background sound (0.01 to 1.0). */ volume?: number; /** Apply a crossfade at the loop boundary to avoid audible pops when the sound loops. */ crossfadeLoop?: boolean; }