import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { MusicUploadResponseCompositionPlan } from "./MusicUploadResponseCompositionPlan"; import { WordTimestamp } from "./WordTimestamp"; export declare const MusicUploadResponse: core.serialization.ObjectSchema; export declare namespace MusicUploadResponse { interface Raw { song_id: string; composition_plan?: MusicUploadResponseCompositionPlan.Raw | null; words_timestamps?: WordTimestamp.Raw[] | null; } }