import { getDiWrapper } from "@tramvai/test-helpers"; import { createMockEnvManager } from "@tramvai/test-mocks"; import { Mock } from "jest-mock"; type Options = Parameters[0] & { env?: Parameters[0]; }; declare const testApi: (options: Options) => { di: import("@tinkoff/dippy").Container; fetchMock: Mock; mockJsonResponse: (body: Record, { status, headers }?: { status?: number | undefined; headers?: Record | undefined; }) => Promise; clearCaches: () => void; }; export { testApi }; //# sourceMappingURL=tests.d.ts.map