/** * In-memory secure storage (for testing and development) */ import type { SecureStorageOptions, StorageResult } from "./types"; import { BaseSecureStorageAdapter } from "./adapter"; /** * Memory-only storage adapter * * Data is NOT persisted and will be lost on app restart. * Use only for testing or ephemeral sessions. */ export declare class MemorySecureStorage extends BaseSecureStorageAdapter { readonly name = "memory"; readonly available = true; private store; constructor(options?: SecureStorageOptions); set(key: string, value: string): Promise>; get(key: string): Promise>; setItem(key: string, value: string): Promise; getItem(key: string): Promise; delete(key: string): Promise>; has(key: string): Promise>; keys(): Promise>; clear(): Promise>; } //# sourceMappingURL=memory.d.ts.map