export interface AsyncContext { getStore(): T | undefined; run(store: T, callback: () => R): R; enterWith(store: T): void; } export declare function createAsyncContext(): AsyncContext;