import * as $dara from '@darabonba/typescript'; export declare class DeleteLiveRecordFilesRequest extends $dara.Model { /** * @remarks * The collection of IDs of recording files. * * This parameter is required. */ recordIds?: string[]; /** * @remarks * Specifies whether to delete the original files in OSS. * * @example * true */ removeFile?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }