import { expect as jestExpect } from 'expect'; import type { PluginFn } from '@japa/runner/types'; /** * Expect plugin for "@japa/runner" */ export declare function expect(): PluginFn; declare module '@japa/runner/core' { interface TestContext { expect: typeof jestExpect; } }