export declare class Condition {
    #private;
    constructor();
    wait(): Promise<void>;
    notify(): Promise<void>;
}
