export declare class Scheduler {
    #private;
    get wait(): Promise<void>;
    add(symbol: symbol, fun: () => void): void;
}
