/** * Open a URL in the user's default browser. * Uses execFile (not exec) to avoid shell command injection. * Platform-specific: open (macOS), xdg-open (Linux), start (Windows). */ export declare function openBrowser(url: string): Promise;