/**
 * RAG CLI Commands for NeuroLink
 *
 * Implements commands for RAG document processing:
 * - neurolink rag chunk <file> - Chunk a document
 * - neurolink rag index <file> - Index a document for retrieval
 * - neurolink rag query <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<{}, {}>;
