/** * Opens the given URL in the user's default browser. * * On macOS and Windows the system browser is launched via `open` / `start`. * On Linux (and any other platform) the URL is printed to the console with * instructions for the user to open it manually. * * If the exec call fails on macOS/Windows the function falls back to printing * the URL rather than throwing. */ export declare function openBrowser(url: string): void; //# sourceMappingURL=browser.d.ts.map