export interface StorageProvider { set(key: string, value: T): Promise; get(key: string): Promise; }