/** * Output truncation limits (chars/lines) for tool responses. * Centralised to prevent ad-hoc magic numbers across handlers. */ export declare const TRUNCATION: { /** Default cap for large textual dumps (UI tree XML, browser DOM, etc.). */ readonly DEFAULT_MAX_CHARS: 15000; /** Cap for log-like outputs that are also line-bounded. */ readonly LOG_MAX_CHARS: 15000; readonly LOG_MAX_LINES: 300; }; //# sourceMappingURL=truncation.d.ts.map