import type { Result } from 'tap-parser'; export interface TapCommentEvent { type: 'comment'; data: string; } export interface TapAssertEvent { type: 'assert'; data: Result; } export type TapEvent = TapCommentEvent | TapAssertEvent; export declare function buildXunitFromTapEvents(events: TapEvent[], suiteName: string, startTime: Date): string; export declare function prematureXunit(name: string, startTime: Date): string;