export interface HardhatTestUserConfig {
}
export interface HardhatTestConfig {
}
/**
 * Summary of a test run, containing counts of test outcomes and optional
 * failure output.
 */
export interface TestSummary {
    failed: number;
    passed: number;
    skipped: number;
    todo: number;
    failureOutput?: string;
}
/**
 * Result of a test run, wrapping a TestSummary. Plugins can extend this
 * interface to include additional data (e.g., suite results).
 */
export interface TestRunResult {
    summary: TestSummary;
}
//# sourceMappingURL=test.d.ts.map