import type { LaunchOptions } from 'playwright'; import type { CLIArgs } from '@japa/runner/types'; /** * Creates Playwright launcher options from the test runner CLI arguments. * Supports flags like --headed, --slow, and --devtools. * * @param cliArgs - CLI arguments from Japa test runner * * @example * ```ts * // With CLI args: --headed --slow=500 --devtools * const options = getLauncherOptions(cliArgs) * // Returns: { headless: false, slowMo: 500, devtools: true } * ``` */ export declare function getLauncherOptions(cliArgs: CLIArgs): LaunchOptions;