import { Readable } from "stream";
export declare const uploadToR2: (file: string | Readable, key: string) => Promise<string>;
export declare const uploadFile: (file: string | Readable, key: string) => Promise<string>;
export declare const uploadFileWithRetry: (file: any) => Promise<string>;
export declare const deleteFile: (filePath: string) => Promise<void>;
