/** * Text chunking utilities for markdown processing * * Provides fence-aware text splitting for Telegram message limits. */ /** * Split text into chunks that fit within a character limit. * Tries to break at natural boundaries (newlines, word boundaries). */ export declare function chunkText(text: string, limit: number): string[];