/** * Open a URL or file path in the user's default browser. * Cross-platform: macOS (open), Linux (xdg-open), Windows (start). * Uses the absolute file path (not file://) so the OS opens it with the default app and avoids browser file-URL restrictions. */ export declare function openInBrowser(urlOrPath: string): void;