import { PlaywrightInstallCLIOptions, PlaywrightTestCLIOptions } from './playwright-args'; import { PlaywrightCommandOpts } from './run-playwright-command'; export declare class PlaywrightCLI { static test(cliOptions: PlaywrightTestCLIOptions, opts?: PlaywrightCommandOpts): Promise<{ stdout: string; stderr: string; }>; static showReport(reportPath: string, opts?: PlaywrightCommandOpts): Promise<{ stdout: string; stderr: string; }>; static install(cliOptions: PlaywrightInstallCLIOptions, opts?: PlaywrightCommandOpts): Promise<{ stdout: string; stderr: string; }>; }