//#region src/singletons/async_local_storage/globals.d.ts
interface AsyncLocalStorageInterface {
  getStore: () => any | undefined;
  run: <T>(store: any, callback: () => T) => T;
  enterWith: (store: any) => void;
}
declare const _CONTEXT_VARIABLES_KEY: unique symbol;
//#endregion
export { AsyncLocalStorageInterface, _CONTEXT_VARIABLES_KEY };
//# sourceMappingURL=globals.d.ts.map