import type * as ElevenLabs from "../index";
/**
 * Response model for structured music generation endpoint
 */
export interface DetailedMusicResponse {
    /** The composition plan used to generate the song */
    compositionPlan: ElevenLabs.MusicPrompt;
    /** The metadata of the generated song */
    songMetadata: ElevenLabs.SongMetadata;
    /** The timestamps of the words in the generated song */
    wordsTimestamps?: ElevenLabs.WordTimestamp[];
}
