/** * Playwright Loader Utility * * This module handles optional Playwright dependency loading. * Playwright is NOT bundled with the MCP - users must install it separately. */ /** * Check if Playwright is available and return helpful installation instructions if not */ export declare function checkPlaywrightAvailable(): Promise<{ available: boolean; error?: string; }>; /** * Get the Playwright module if available * Returns the module or null if not installed */ export declare function getPlaywright(): Promise; /** * Get error message for when Playwright is not available */ export declare function getPlaywrightNotAvailableError(): string; //# sourceMappingURL=playwrightLoader.d.ts.map