import * as $dara from '@darabonba/typescript'; import { MediaObject } from "./MediaObject"; export declare class MediaConvertOutput extends $dara.Model { /** * @remarks * The feature parameters. * * @example * {} */ features?: string; /** * @remarks * The name of the output. * * @example * output-video */ name?: string; /** * @remarks * The output file. */ outputFile?: MediaObject; /** * @remarks * A JSON string containing parameters to overwrite the corresponding settings of the template. * * @example * {} */ overrideParams?: string; /** * @remarks * The priority. Valid values: 1 to 10. A larger value indicates a higher priority. Default value: 6. * * @example * 6 */ priority?: number; /** * @remarks * The ID of the transcoding template. * * @example * ****96e8864746a0b6f3**** */ templateId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }