import type * as ElevenLabs from "../index"; 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[]; }