/** * Memory management commands */ import { Command } from "../cliffy-compat.js"; interface MemoryEntry { key: string; value: string; namespace: string; timestamp: number; } export declare class SimpleMemoryManager { private filePath; private data; load(): Promise; save(): Promise; store(key: string, value: string, namespace?: string): Promise; query(search: string, namespace?: string): Promise; getStats(): Promise<{ totalEntries: number; namespaces: number; namespaceStats: Record; sizeBytes: number; }>; exportData(filePath: string): Promise; importData(filePath: string): Promise; cleanup(daysOld?: number): Promise; } export declare const memoryCommand: Command; export {}; //# sourceMappingURL=memory.d.ts.map