interface UploadFileProps { Bucket: string; Key: string; path: string; } export declare const uploadFile: ({ Bucket, Key, path }: UploadFileProps) => Promise; export {};