export declare class Gate { action: () => Promise; gate: Promise | undefined; constructor(action: () => Promise); wait(): Promise; }