export declare class BrowserRemote { static navigateToURL(url: string): Promise; static pressEsc(): Promise; static pressTab(): Promise; static pressBackspace(): Promise; static pressEnter(): Promise; static pressDelete(): Promise; static writeText(stringToWrite: string): Promise; static waitUntil(condition: () => boolean | Promise, timeout: number): Promise; static takeScreenshot(): Promise; static saveScreenshot(filepath: string): Promise; static getName(): Promise; static getVersion(): Promise; static getOperatingSystem(): Promise; static getWindowSize(): Promise<{ width: number; height: number; }>; static setWindowSize(width: number, height: number): Promise; static setFullscreen(): Promise; private static executeEndpoint; }