/** * Chrome Launcher - Launches Chrome/Chromium with proper configuration */ import { type Browser } from 'playwright'; import type { ChromeProfileConfig, CliOptions } from '../types.js'; import { Logger } from '../utils/logger.js'; export declare class ChromeLauncher { private logger; private browser; private context; constructor(logger: Logger); /** * Launch Chrome with DevTools and proper configuration */ launch(config: ChromeProfileConfig, options: CliOptions): Promise; /** * Close the browser and cleanup */ close(): Promise; /** * Get the browser instance (for advanced usage) */ getBrowser(): Browser | null; } //# sourceMappingURL=chrome-launcher.d.ts.map