/** @noSelfInFile */ export declare const waitFrames: (frames?: number) => Promise; export declare const waitTime: (time: number) => Promise; type Condition = (this: void) => boolean; export declare const waitCondition: (condition: Condition, timeout?: number) => Promise; export declare const waitUntilLoaded: (object: T) => Promise; export {};