import { type ChildProcessWithoutNullStreams } from "node:child_process"; import { type BrowserExecutable } from "./chrome.executables.js"; import type { ResolvedBrowserConfig, ResolvedBrowserProfile } from "./config.js"; export type { BrowserExecutable } from "./chrome.executables.js"; export { findChromeExecutableLinux, findChromeExecutableMac, findChromeExecutableWindows, resolveBrowserExecutableForPlatform, } from "./chrome.executables.js"; export { decorateBotProfile, ensureProfileCleanExit, isProfileDecorated, } from "./chrome.profile-decoration.js"; export type RunningChrome = { pid: number; exe: BrowserExecutable; userDataDir: string; cdpPort: number; startedAt: number; proc: ChildProcessWithoutNullStreams; }; export declare function resolveBotUserDataDir(profileName?: string): string; export declare function isChromeReachable(cdpUrl: string, timeoutMs?: number): Promise; export declare function getChromeWebSocketUrl(cdpUrl: string, timeoutMs?: number): Promise; export declare function isChromeCdpReady(cdpUrl: string, timeoutMs?: number, handshakeTimeoutMs?: number): Promise; export declare function launchBotChrome(resolved: ResolvedBrowserConfig, profile: ResolvedBrowserProfile): Promise; export declare function stopBotChrome(running: RunningChrome, timeoutMs?: number): Promise;