import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { BackgroundMusicPresetId } from "./BackgroundMusicPresetId"; import { BackgroundMusicSourceType } from "./BackgroundMusicSourceType"; export declare const BackgroundMusicConfig: core.serialization.ObjectSchema; export declare namespace BackgroundMusicConfig { interface Raw { source_type?: BackgroundMusicSourceType.Raw | null; source_id?: BackgroundMusicPresetId.Raw | null; volume?: number | null; crossfade_loop?: boolean | null; } }