export declare class ALS {
    private static instance;
    private asyncLocalStorage;
    constructor();
    run(fn: (...args: any[]) => any): Promise<any>;
    exit(): void;
    store(): Map<any, any> | undefined;
    set(key: any, value: any): void;
    get<T>(key: any): T;
}
