export declare function getChunksSimple({ text, // The input text to be split
maxCharLength, }: {
    text: string;
    maxCharLength?: number;
}): string[];
