import { Buffer } from "node:buffer"; import type { AgUiSseProgressSnapshot as EvalProgressSnapshot } from "../../../agent/index.js"; /** Create plain text pdf. */ export declare function createPlainTextPdf(lines: string[]): Buffer; /** Builds progress line. */ export declare function buildProgressLine(input: { caseId: string; startedAt: number; progress: EvalProgressSnapshot; }): string; /** Builds failure suffix. */ export declare function buildFailureSuffix(progress: EvalProgressSnapshot): string; /** Contains ordered subsequence helper. */ export declare function containsOrderedSubsequence(haystack: string[], needle: string[]): boolean; //# sourceMappingURL=formatting.d.ts.map