/// import UploadFile from "./UploadFile"; import InstanceOptions from "./InstanceOptions"; declare class Storage { private options; constructor(options: InstanceOptions); private readFromPath; /** * Upload a file to the Storage API * @param file Buffer * @returns Upload file */ uploadFile(file: Buffer): Promise; /** * Upload a file to the Storage API * @param path Path to the file * @returns Upload file */ uploadFile(path: String): Promise; /** * Upload files to the Storage API * @param files Array of buffer * @returns Upload file */ uploadFiles(files: Array): Promise>; /** * Upload files to the Storage API * @param files Array of paths * @returns Upload file */ uploadFiles(paths: Array): Promise>; } export default Storage;