export interface PlaywrightTestCLIOptions { config?: string; output?: string; headed?: boolean; browser?: string; debug?: boolean; forbidOnly?: boolean; grep?: string; grepInvert?: string; globalTimeout?: number; list?: boolean; maxFailures?: number; project?: string; quiet?: boolean; repeatEach?: number; reporter?: string; retries?: number; shard?: string; timeout?: number; ui?: boolean; updateSnapshots?: boolean; workers?: number; } export interface PlaywrightInstallCLIOptions { withDeps?: boolean; force?: boolean; } export declare function getArgsFromCLIOptions(cliOptions: PlaywrightTestCLIOptions | PlaywrightInstallCLIOptions): string[];