export declare abstract class StorageAdapter { abstract connect(): Promise; abstract add(key: string, value: unknown): Promise; abstract get(key: string): Promise; abstract getAll(): Promise>; abstract delete(key: string): Promise; abstract clear(): Promise; }