import * as $dara from '@darabonba/typescript'; export declare class CreateLiveTranscodeTemplateShrinkRequest extends $dara.Model { /** * @remarks * The name of the template. * * This parameter is required. * * @example * my template */ name?: string; /** * @remarks * The configuration of the template. */ templateConfigShrink?: string; /** * @remarks * The type of the template. Valid values: * * * normal * * narrow-band * * audio-only * * origin * * This parameter is required. * * @example * normal */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }