import { Chunker } from "./chunking.js"; //#region src/markdown.d.ts /** * Creates a Markdown chunker. * * The chunker parses Markdown content into sections (heading + content) and * creates chunks that respect section boundaries. Each section is kept as a * single chunk when possible, and only split when exceeding the token limit. * * @returns A chunker function for Markdown content. * @since 0.1.0 */ declare function createMarkdownChunker(): Chunker; //#endregion export { createMarkdownChunker };