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<serializers.SongSourceContext.Raw, ElevenLabs.SongSourceContext>;
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<string, unknown> | null;
    }
}
