/**
 * CloakBrowser — Stealth Chromium for Node.js
 *
 * Default export uses Playwright. For Puppeteer, import from 'cloakbrowser/puppeteer'.
 *
 * @example
 * ```ts
 * // Playwright (default)
 * import { launch } from 'cloakbrowser';
 * const browser = await launch();
 *
 * // Puppeteer
 * import { launch } from 'cloakbrowser/puppeteer';
 * const browser = await launch();
 * ```
 */
export { launch, launchContext, launchPersistentContext, buildLaunchOptions, buildContextOptions, humanizeBrowser } from "./playwright.js";
export { ensureBinary, clearCache, binaryInfo, checkForUpdate } from "./download.js";
export { CHROMIUM_VERSION, getDefaultStealthArgs } from "./config.js";
export type { LaunchOptions, LaunchContextOptions, LaunchPersistentContextOptions, BinaryInfo } from "./types.js";
//# sourceMappingURL=index.d.ts.map