import type { KnowledgeChunker } from "@vendoai/core"; /** The structural chunker. Prose (`docs`) splits at h1-h6 boundaries (fence-aware — a heading inside a code block never splits, including fences opened in list items) with the accumulated heading path on every chunk and a soft size budget applied at blank-line block boundaries, subdividing oversized blocks so no chunk is unbounded. Glossary/api docs chunk one entry per heading-delimited term, budget-exempt: an entry is the atomic unit of exact lookup. Chunk ids are `#` — stable across runs because the split is deterministic. */ export declare const structuralChunker: KnowledgeChunker; //# sourceMappingURL=chunker.d.ts.map