export interface TrimmedOutput { text: string; truncated: boolean; originalLength: number; } export declare function trimOutputForApi(text: string, maxChars: number): TrimmedOutput; //# sourceMappingURL=trimOutput.d.ts.map