import type * as ElevenLabs from "../index"; export interface SubtitleOrderItemRequest { /** The IDs of the uploaded media files to generate subtitles for. */ mediaIds: ElevenLabs.MediaId[]; /** The language code of the source media (e.g. 'en', 'es'). */ sourceLanguage: string; /** List of target language codes. Subtitles will be generated for each media file in each destination language. */ destinationLanguages: string[]; /** Formatting options for subtitle cues such as duration, line count, and character limits. */ cueOptions?: ElevenLabs.CueOptionsRequest; /** Whether subtitles should use SDH format, which includes descriptions for deaf and hard-of-hearing viewers. */ sdh?: boolean; /** Optional free-text instructions for the subtitling team. */ instructions?: string; }