/** * Text file chunker for the semantic search subsystem. * * Splits non-code files (markdown, YAML, JSON, TOML, plaintext) into * semantically meaningful chunks using format-specific boundary detection. */ import type { Chunk, TextFileType } from "./types.js"; /** * Chunk a non-code text file by format-specific boundaries. * * Returns at least one chunk for any non-empty input. Empty files produce * a single chunk of kind 'file'. */ export declare function chunkTextFile(content: string, filePath: string, fileType: TextFileType): Chunk[]; //# sourceMappingURL=text-chunker.d.ts.map