import type { ChromeExecutable, LaunchOptions, RunningChrome } from './types.js'; export declare function resolveBrowserExecutable(opts?: { executablePath?: string; }): ChromeExecutable | null; export declare function isChromeReachable(cdpUrl: string, timeoutMs?: number, authToken?: string): Promise; export declare function getChromeWebSocketUrl(cdpUrl: string, timeoutMs?: number, authToken?: string): Promise; export declare function launchChrome(opts?: LaunchOptions): Promise; export declare function stopChrome(running: RunningChrome, timeoutMs?: number): Promise;