import ExpressBridge from './ExpressBridge.js'; /** * Register all storage-related handlers with the bridge */ export declare function registerStorageHandlers(bridge: ExpressBridge): void; /** * Storage utility class for easier client-side usage */ export declare class StorageClient { private bridge; constructor(bridge: any); get(key: string, options?: {}): Promise; set(key: string, data: any, options?: {}): Promise; has(key: string, options?: {}): Promise; keys(options?: {}): Promise; remove(key: string, options?: {}): Promise; clear(options?: {}): Promise; getMany(keys: string[], options?: {}): Promise; getAll(options?: {}): Promise; getStats(options?: {}): Promise; setDataPath(path?: string): Promise; getDataPath(): Promise; getSync(key: string, options?: {}): Promise; setSync(key: string, data: any, options?: {}): Promise; }