import * as $dara from '@darabonba/typescript'; export declare class DeleteEditingProjectMaterialsRequest extends $dara.Model { /** * @remarks * The material ID. Separate multiple material IDs with commas (,). You can specify up to 10 IDs. * * This parameter is required. * * @example * *****cbd721b418a89a7dafb1dc*****,*****86f5d534c95997c55c96f***** */ materialIds?: string; /** * @remarks * The material type. Valid values: * * \\- video * * \\- image * * \\- audio * * \\- subtitle * * \\- text * * This parameter is required. * * @example * video */ materialType?: string; /** * @remarks * The ID of the online editing project. * * This parameter is required. * * @example * *****fb2101cb318***** */ projectId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }