import type { IContext } from '../../support_code_library_builder/context'; interface TestRunScopeStore { context: IContext; } export declare function runInTestRunScope(store: TestRunScopeStore, callback: () => ResponseType): Promise; /** * A proxy to the context for the currently-executing test run. * * @beta * @remarks * Useful for getting a handle on the context when using arrow functions and thus * being unable to rely on the value of `this`. Only callable from the body of a * `BeforeAll` or `AfterAll` hook (will throw otherwise). */ export declare const contextProxy: IContext; export {};