/** * RAG CLI Commands for NeuroLink * * Implements commands for RAG document processing: * - neurolink rag chunk - Chunk a document * - neurolink rag index - Index a document for retrieval * - neurolink rag query - Query indexed documents */ import type { CommandModule } from "yargs"; /** * RAG CLI command factory */ export declare class RAGCommandFactory { /** * Create the main RAG command with subcommands */ static createRAGCommands(): CommandModule; } export declare const ragCommand: CommandModule<{}, {}>;