import { Chunker } from "./chunking.cjs"; //#region src/plaintext.d.ts /** * Creates a plain text chunker. * * The chunker splits plain text content by paragraphs (separated by one or * more blank lines). When a paragraph exceeds the token limit, it is further * split by sentences. * * @returns A chunker function for plain text content. * @since 0.2.0 */ declare function createPlainTextChunker(): Chunker; //#endregion export { createPlainTextChunker };