export interface ShellCompressResult { text: string; original: string | null; } export interface ShellCompressOptions { minLines?: number; minReductionPercent?: number; maxStackFrames?: number; maxPassLines?: number; } export declare function compressShellOutputFull(raw: string, options?: ShellCompressOptions): ShellCompressResult; export declare function compressShellOutput(raw: string, options?: ShellCompressOptions): string; //# sourceMappingURL=shell-compress.d.ts.map