export declare enum CheckStatus { SCHEDULING = 0, RUNNING = 1, RETRIED = 2, FAILED = 3, SUCCESSFUL = 4, DEGRADED = 5 } export declare function formatDuration(ms: number): string; export declare function formatCheckTitle(status: CheckStatus, check: any, opts?: { includeSourceFile?: boolean; printRetryDuration?: boolean; }): string; export declare function formatCheckResult(checkResult: any): string; export declare function resultToCheckStatus(checkResult: any): CheckStatus; export declare function print(text: string): void; export declare function printLn(text: string, afterLnCount?: number, beforeLnCount?: number): void; export declare function getTestSessionUrl(testSessionId: string): string; export declare function getTraceUrl(traceUrl: string): string;