import { Score } from './shared.mjs'; /** * Temporary legacy formatter helpers. * * Keep these local to the scorer-first compatibility layer so legacy can be * deleted without touching the harness-first entrypoint. */ /** Wraps scorer output into fixed-width lines for legacy failure messages. */ declare function wrapText(text: string, width?: number): string; /** Formats legacy scorer results for matcher and assertion output. */ declare function formatScores(scores: (Score & { name: string; })[]): string; export { formatScores, wrapText };