/** * Shared hygiene for provider HTTP error bodies embedded in thrown error * messages. Provider error responses can echo request headers/bodies, so a * raw `await response.text()` in an error message can leak bearer tokens into * logs, events.jsonl, and execution reports. Truncation also keeps a huge * HTML error page from drowning the actual failure. */ export declare function safeErrorBody(body: string, maxLength?: number): string; //# sourceMappingURL=http-error-safety.d.ts.map