import * as $dara from '@darabonba/typescript'; import { MediaObject } from "./MediaObject"; export declare class MediaConvertOutputGroupConfig extends $dara.Model { /** * @remarks * The filename for the manifest. This parameter is only applicable when Type is set to Hls or Dash. * * @example * manifest */ manifestName?: string; /** * @remarks * The directory where all files for this output group are stored. */ outputFileBase?: MediaObject; /** * @remarks * The type of the output group. Valid values: * * * File: Generates one or more standalone files. * * Hls: Generates HLS manifests. * * Dash: Generates DASH manifests. * * @example * Hls */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }