export declare const enum PlayWrightCommand { TEST = "test", SHOW_REPORT = "show-report", CODEGEN = "codegen", OPEN = "open", INSTALL = "install" } export interface PlaywrightCommandOpts { cwd?: string; env?: NodeJS.ProcessEnv; } export declare function runPlaywrightCommand(playwrightCommand: PlayWrightCommand, args?: string[], opts?: PlaywrightCommandOpts): Promise<{ stdout: string; stderr: string; }>;