/** * Memory command - Manage agent memory with optional persistence */ export interface MemoryOptions { userId?: string; verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; db?: string; } export declare function execute(args: string[], options: MemoryOptions): Promise;