import * as $dara from '@darabonba/typescript'; export declare class MediaConvertJobOverwiteParamsSubtitles extends $dara.Model { /** * @remarks * The encoding format for the subtitle stream. * * @example * VTT */ codec?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class MediaConvertJobOverwiteParams extends $dara.Model { /** * @remarks * Subtitle stream configurations. */ subtitles?: MediaConvertJobOverwiteParamsSubtitles[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }