//#region src/plugin-sdk/text-chunking.d.ts /** * Splits outbound channel text into chunks no longer than the requested limit. * Newline boundaries win over spaces; text without usable separators falls back * to a hard character split so channel senders always receive bounded strings. */ declare function chunkTextForOutbound(text: string, limit: number): string[]; //#endregion export { chunkTextForOutbound as t };