///
import UploadFile from "./uploadFile";
import InstanceOptionsHelper from "./instanceOptionsHelper";
declare class Storage {
private options;
constructor(options: InstanceOptionsHelper);
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;