import type { TestError } from '@vitest/utils';
import type { TestCase } from 'vitest/node';
export default class MissingResultError extends Error implements TestError {
    [key: string]: unknown;
    constructor(testCase: TestCase);
}
