export interface StorageProvider { configure(config: object): object; get(key: string, options?: any): Promise; put(key: string, object: any, options?: any): Promise; remove(key: string, options?: any): Promise; list(path: any, options?: any): Promise; getCategory(): string; getProviderName(): string; }