import * as $dara from '@darabonba/typescript'; export declare class GetTemplateParamsResponseBodyParamList extends $dara.Model { /** * @remarks * The original subtitle content. */ content?: string; /** * @remarks * The thumbnail URL of the original material. */ coverUrl?: string; height?: number; /** * @remarks * The parameter name. * * @example * video1 */ key?: string; /** * @remarks * The URL of the original material. */ mediaUrl?: string; timelineIn?: number; timelineOut?: number; /** * @remarks * The material type. * * Valid values: * * * Video * * Text * * Image * * @example * Image */ type?: string; width?: number; x?: number; y?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetTemplateParamsResponseBody extends $dara.Model { /** * @remarks * The queried parameters. */ paramList?: GetTemplateParamsResponseBodyParamList[]; /** * @remarks * The request ID. * * @example * ****2876-6263-4B75-8F2C-CD0F7FCF**** */ requestId?: string; /** * @remarks * The template ID. * * @example * ******419c8741c1b4325f035b****** */ templateId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }