/** * Utility function to open URLs that works across multiple environments: * - Tauri desktop apps (using @tauri-apps/plugin-opener) * - Web browsers (using window.open) * - React Native apps (using Linking API) * * Automatically detects the environment and uses the appropriate method. */ export declare function openUrl(url: string): Promise;