import type { Browser } from "playwright-core"; import type { UrlConfig } from "../../config/schema.js"; /** * Error thrown when Chrome/Chromium is not found on the system. */ export declare class BrowserNotFoundError extends Error { constructor(cause?: Error); } /** * Launch a headless browser for URL import. * * Uses system-installed Chrome/Chromium via playwright-core. * Falls back to config.browserPath if provided. */ export declare function launchBrowser(config: UrlConfig): Promise; //# sourceMappingURL=browser.d.ts.map