export declare class PromiseQueue { private _queue; constructor(); /** * Hangs until trigger is called */ wait(): Promise; /** * Allows all hanging waits to return */ trigger(): void; }