import { STORAGE_PROVIDER_PROTOCOL, StorageProviderServiceConfig } from "../.."; import { FileBaseDto } from "./base.dto"; /** * Delete file */ export declare class DeleteFileBaseDto extends FileBaseDto { name: string; path: string; service: STORAGE_PROVIDER_PROTOCOL; serviceConfig: StorageProviderServiceConfig; } export declare class DeleteFileDto extends DeleteFileBaseDto { }