/** * CCCMemory - Interactive CLI/REPL * Main entry point for interactive mode */ /** * Interactive REPL for CCCMemory */ export declare class ConversationMemoryCLI { private rl; private memory; private handlers; constructor(); /** * Setup readline interface and handlers (only for REPL mode) */ private setupREPL; /** * Handle a command */ private handleCommand; /** * Start the REPL */ start(): Promise; /** * Execute a single command and exit */ runSingleCommand(command: string): Promise; } //# sourceMappingURL=index.d.ts.map