import type { CodeChunk } from './types.js'; export interface ChunkOnlyOptions { /** Explicit list of files to index (skips full repo scan when provided) */ filesToIndex?: string[]; /** Concurrency for file processing */ concurrency?: number; /** Chunk size in lines */ chunkSize?: number; /** Chunk overlap in lines */ chunkOverlap?: number; } export interface ChunkOnlyResult { success: boolean; filesIndexed: number; chunksCreated: number; durationMs: number; chunks: CodeChunk[]; error?: string; } /** * Perform chunk-only indexing (no embeddings or VectorDB). * Returns raw chunks in-memory for direct analysis. */ export declare function performChunkOnlyIndex(rootDir: string, options?: ChunkOnlyOptions): Promise; //# sourceMappingURL=chunk-only-index.d.ts.map