import type { TestRunResult } from './result'; /** * Format test results as TAP v13. * http://testanything.org/ */ export declare function formatTap(result: TestRunResult): { tap: string; success: boolean; }; export declare function getErrorYaml(error: unknown): string;