import * as $dara from '@darabonba/typescript'; export declare class UpdateCustomTemplateRequest extends $dara.Model { /** * @remarks * The template name. * * @example * test-template */ name?: string; /** * @remarks * The [template parameters](https://help.aliyun.com/document_detail/448291.html). * * @example * {"param": "sample"} */ templateConfig?: string; /** * @remarks * The template ID. * * This parameter is required. * * @example * ****96e8864746a0b6f3**** */ templateId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }