import { type TestInfoLike } from './utils'; /** Payload embedded in `ci-test-info` header and `__TC_CI_TEST_INFO` (mirrors web runtime). */ export type CiTestInfo = Record; export type TestInfoForCi = TestInfoLike & { retry?: number; workerIndex?: number; testId?: string | number; }; export declare function buildCiTestInfoObject(testInfo: TestInfoForCi, projectRootDir: string): CiTestInfo; export declare function buildCiTestInfoJson(testInfo: TestInfoForCi, projectRootDir: string): string; //# sourceMappingURL=ci-test-info.d.ts.map