import { type Browser, type BrowserContext, type BrowserType } from "playwright-core"; import { type LaunchOptions } from "./utils.js"; export declare function Camoufox(launch_options?: LaunchOptions & { user_data_dir?: UserDataDir; }): Promise; export declare function NewBrowser(playwright: BrowserType, headless?: boolean | "virtual", fromOptions?: Record, userDataDir?: UserDataDir, debug?: boolean, launch_options?: LaunchOptions): Promise;