export declare const MAX_READ_LINES = 2000; export declare const MAX_READ_BYTES: number; export declare const MAX_GREP_HITS = 200; export declare const MAX_GREP_LINE_LEN = 500; export declare const MAX_LIST_ENTRIES = 1000; export declare const MAX_SHELL_OUTPUT_BYTES: number; export declare function applyReadWindow(content: string, offset?: number, limit?: number): { content: string; truncated: boolean; note?: string; }; export declare function capGrepHits(hits: T[]): { hits: T[]; truncated: boolean; }; export declare function capList(entries: T[]): { entries: T[]; truncated: boolean; };