import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; export declare const SongSourceContext: core.serialization.ObjectSchema; export declare namespace SongSourceContext { interface Raw { song_id: string; title?: string | null; description?: string | null; genres?: string[] | null; languages?: string[] | null; is_explicit?: boolean | null; bpm?: number | null; generation_settings?: Record | null; } }