import { TestResult } from '../types'; export declare type TestStats = { readonly passing: number; readonly failing: number; readonly skipped: number; }; export declare function getTestStats(testResults: TestResult[], seed?: TestStats): TestStats;