export declare const DB_NAME = "myEditorDB"; export declare const DB_VERSION = 1; export declare const STORE_NAME = "TRADE_SESSIONS"; declare class DatabaseService { private db; private isInitializing; constructor(); init(): Promise; getDB(): Promise; addItem(storeName: string, item: any): Promise; getItem(storeName: string, key: string): Promise; deleteItem(storeName: string, key: string): Promise; clearStore(storeName: string): Promise; close(): void; isOpen(): boolean; healthCheck(): Promise<{ status: string; message: string; }>; } export declare const dbService: DatabaseService; export {};