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