import type * as ElevenLabs from "../index"; /** * Composition plan for the `music_v1` model. Using this field with any other model will result in an error. */ export interface MusicPrompt { /** The styles and musical directions that should be present in the entire song. Use English language for best result. */ positiveGlobalStyles: string[]; /** The styles and musical directions that should not be present in the entire song. Use English language for best result. */ negativeGlobalStyles: string[]; /** The sections of the song. */ sections: ElevenLabs.SongSection[]; }