/** * Cross-platform browser opening with WSL detection. */ /** * Try to open URL in default browser. Returns true if likely succeeded. * * Detection order: * 1. win32: powershell.exe -EncodedCommand * 2. darwin: `open` command * 3. linux: check WSL then `xdg-open` * * Never throws. Returns false on failure. */ export declare function tryOpenBrowser(url: string): Promise; //# sourceMappingURL=browser.d.ts.map