export declare const browserAutomationPath = "/services/automation/browser"; export declare const BrowserAutomation: unique symbol; export interface BrowserAutomation { launch(remoteDebuggingPort: number): Promise; isRunning(): Promise; queryDom(selector?: string): Promise; close(): Promise; } export interface LaunchResult { remoteDebuggingPort: number; } export declare const BrowserAutomationClient: unique symbol; export interface BrowserAutomationClient { } //# sourceMappingURL=browser-automation-protocol.d.ts.map