import { StorageService } from "../services/storage.service";
export declare class UploadController {
    private readonly storageService;
    constructor(storageService: StorageService);
    uploadFile(file: Express.Multer.File, folder?: string): Promise<{
        url: string;
    }>;
}
