import type * as ElevenLabs from "../index";
/**
 * Response model for music upload endpoint.
 */
export interface MusicUploadResponse {
    /** Unique identifier for the uploaded song */
    songId: string;
    /** The composition plan extracted from the uploaded song. Only present if `extract_composition_plan` was True in the request body */
    compositionPlan?: ElevenLabs.MusicPrompt;
}
