import { type SpawnOptions } from "node:child_process"; import type { BrowserCommandArgs } from "../types/browser.js"; type BrowserSpawn = (command: string, args: readonly string[], options: SpawnOptions) => { unref: () => void; }; export interface BrowserCommandOptions { workspace?: string; configDir?: string; spawnProcess?: BrowserSpawn; resolveExecutablePath?: (explicitPath?: string) => string; } export declare function executeBrowserCommand(args: BrowserCommandArgs, options?: BrowserCommandOptions): Promise; export {};