export declare class PromiseTrain {
    private _promise;
    push(f: () => Promise<unknown>): Promise<void>;
}
