import { Equipment } from "../types.service"; export declare const deleteFromS3: (path: any) => Promise; export declare const uploadFileToS3: (path: string, file: File, objectId: string | null) => Promise; export declare const getSignedImageUrlForEquipment: (equip: Equipment) => Promise; export declare const getSignedImageUrlForProfile: (profile: any) => Promise; export declare const getSignedImageUrlForSpace: (space: any) => Promise; export declare const uploadBase64Image: (uri: string, objectId: string | null, path: string, friendlyFileName: string) => Promise; export declare const uploadBase64ImageWithRetry: (uri: string, objectId: string | null, path: string, friendlyFileName: string, retry: number) => Promise; export declare const removeAllFilesFromFolderS3: (folderPath: string) => Promise; export declare const listFilesInFolder: (folderPath: string) => Promise; export declare const getSignedFile: (path: any) => Promise; export declare const downloadFileAsObject: (path: any) => Promise; export declare const getBufferForFileFromS3: (path: any) => Promise; export declare const uploadJsonToS3: (path: string, json: string, filename: string) => Promise;