/** * Delete specific file at provided path from firebase bucket. * @param path - The path to the image to delete */ export declare const deleteFromFbBucket: (path: string) => Promise; /** * Delete folder at provided path from firebase bucket. * @param folderPath - The path to the folder that should be deleted. * @param deleteFilesInFolder - Optionnal. If the inner files of the folder should be deleted as well. */ export declare const deleteFolderFromFbBucket: (folderPath: string, deleteFilesInFolder?: boolean) => Promise;