export declare const DATABASE_DEFAULT_KEY = "default"; export declare const DATABASE_NAME = "alshdavid:localstorage"; export declare class Connection { #private; constructor(storeKey?: string); listItems(): Promise; getItem(key: string): Promise; setItem(key: string, value: IDBValidKey): Promise; removeItem(key: string): Promise; getItemJson(key: string): Promise; setItemJson(key: string, value: any): Promise; close(): Promise; }