import type { TestResult } from "./types/TestResult.js"; /** * Takes a `TestResult` and returns a readable string.. * * @category Output * @example * ```typescript * stringifyTest({ * given: "🟢", * must: "🟩", * }); // "[PASS] Given 🟢, must 🟩." * stringifyTest({ * differences: [...], * given: "🟢", * must: "🟩", * }); // "[FAIL] Given 🟢, must 🟩, but..." * ``` * @param testResult Test result object. * @returns Readable string. */ export declare const stringifyTest: ({ differences, given, must, }: TestResult) => string;