export type LoadUrlInBrowserProps = { onLoadUrlInBrowser?: (url: string) => void; onLoadUrlInBrowserError?: (url: string, error: Error) => void; }; export declare function loadUrlInBrowser(url: string, callbacks: LoadUrlInBrowserProps): void;