/** * Batch Index Command * * Indexes large monorepos by processing modules in batches. * Handles the 100-file limit by splitting content across multiple batches. */ /** * Batch index command options */ export interface BatchIndexOptions { batchSize?: number; maxFiles?: number; skipEmbeddings?: boolean; verbose?: boolean; } /** * Batch index command */ export declare function batchIndexCommand(options: BatchIndexOptions): Promise; //# sourceMappingURL=batch-index.d.ts.map