import type { TruncationResult } from './types.js'; export declare const MAX_PASSTHROUGH = 2048; /** * Four-tier truncation cascade: * T1: JSON schema extraction * T2: Pattern matching (test output, diff, npm) * T3: Head/Tail slicing * T4: SHA256 hash (binary content) */ export declare function truncate(content: string, aggressive?: boolean): TruncationResult; //# sourceMappingURL=truncation.d.ts.map