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