import { browserMock } from './browser-mock'; import type * as VitestType from 'vitest'; type Vitest = typeof VitestType; declare const exportedExpect: (actual: T) => 0 extends 1 & T ? import("./playwright-types").Matchers : T extends import("./browser-mock").BrowserSpy ? "Browser mocks need to be awaited. Try changing `expect(spy)` to `expect(await spy)`" : import("./playwright-types").Matchers; declare const exportedDescribe: Vitest['describe']; declare const exportedIt: Vitest['it'] & { debug: Vitest['it']; }; export { exportedDescribe as describe, exportedIt as it, exportedIt as test, exportedExpect as expect, browserMock, }; //# sourceMappingURL=vitest.d.ts.map