export declare const projectRoot: string; /** * Check if the current run is headless. * @returns True if headless mode is enabled, false otherwise. */ export declare function isHeadlessRun(): boolean; /** * Enum for supported browser types. */ export declare enum BrowserTypes { Chromium = "chromium", Firefox = "firefox", Webkit = "webkit" } /** * Get the browser type based on the environment configuration. * @returns The Playwright browser type. */ export declare function getBrowserType(): import("@playwright/test").BrowserType<{}>; /** * Get the process environment configuration. * @returns An object containing the browser type, headless mode, and output directory. */ export declare const ProcessEnvironmentConfig: () => { browserType: string; headless: boolean; outputDirectory: string; };