import { type AbstractWrappedFixtureWithInstance, type WrapTestContextConfig, wrapTestContextFactory, type InstanceWrapTestContextConfig, instanceWrapTestContextFactory, type TestWrappedContextFactoryBuilder } from '../shared/shared.wrap'; /** * @deprecated Use TestWrappedContextFactoryBuilder from shared instead. This is kept for backwards compatibility. */ export type JestTestWrappedContextFactoryBuilder = TestWrappedContextFactoryBuilder; /** * @deprecated Use WrapTestContextConfig from shared instead. This is kept for backwards compatibility. */ export type JestWrapTestContextConfig = WrapTestContextConfig; /** * Wraps the input JestTestContextFactory to emit another type of Fixture for tests. * * @deprecated Use wrapTestContextFactory from shared instead. This is kept for backwards compatibility. * @returns */ export declare const wrapJestTestContextFactory: typeof wrapTestContextFactory; /** * @deprecated Use InstanceWrapTestContextConfig from shared instead. This is kept for backwards compatibility. */ export type InstanceJestWrapTestContextConfig, F> = InstanceWrapTestContextConfig; /** * @deprecated Use instanceWrapTestContextFactory from shared instead. This is kept for backwards compatibility. */ export declare const instanceWrapJestTestContextFactory: typeof instanceWrapTestContextFactory;