import type { Jest } from '@jest/environment'; import type { JestExpect } from '@jest/expect'; import type { Global } from '@jest/types'; declare global { const it: Global.ItConcurrent, test: Global.ItConcurrent, fit: Global.ItBase & { concurrent?: Global.ItConcurrentBase | undefined; }, xit: Global.ItBase, xtest: Global.ItBase, describe: Global.Describe, xdescribe: Global.DescribeBase, fdescribe: Global.DescribeBase, beforeAll: Global.HookBase, beforeEach: Global.HookBase, afterEach: Global.HookBase, afterAll: Global.HookBase; const expect: JestExpect; const jest: Jest; } //# sourceMappingURL=testHarness.d.ts.map