import { state } from './state'; import { FormattedTestResults } from '@jest/test-result'; type ArtifactType = typeof state.artifacts[number]['type']; type Group = Partial>; type Grouped = Record; type TestResults = FormattedTestResults['testResults']; type FormattedTestResult = TestResults[number]; type AssertionResult = FormattedTestResult['assertionResults'][number]; export type MergedResults = Omit & { testResults: Array & { filename: string; assertionResults: Array; }>; }; export declare const collectArtifacts: () => Promise; export declare const mergeArtifacts: (bootstrappedAt: string, cwd: string, artifacts: Record, resultsJson: string) => void; export {}; //# sourceMappingURL=artifacts.d.ts.map