import { AsyncLocalStorage } from 'async_hooks'; export type SimpleStore = { [name: string]: any; }; export declare class Zone { static asyncLocalStorage?: AsyncLocalStorage; static enable(): void; static current(): SimpleStore | undefined; static run(data: SimpleStore, cb: () => T): T; } export declare type __ΩSimpleStore = any[];