/// export declare const jestHookLookup: { beforeAll: jest.Lifecycle; beforeEach: jest.Lifecycle; afterAll: jest.Lifecycle; afterEach: jest.Lifecycle; }; export declare const jestHookNamePairs: { readonly beforeAll: "afterAll"; readonly beforeEach: "afterEach"; }; /** * Helpers for interacting with jest lifecycle. */ export declare namespace HookNames { type Setup = 'beforeAll' | 'beforeEach'; type Setdown = 'afterEach' | 'afterAll'; type All = Setdown | Setup; } export declare type HookPhaseNames = 'each' | 'all'; export declare const jestHookToPhase: { readonly beforeAll: "all"; readonly beforeEach: "each"; readonly afterAll: "all"; readonly afterEach: "each"; }; //# sourceMappingURL=jest.d.ts.map