import { LoggerService } from "./logger-service.js"; /** * Service for opening URLs in the user's default browser. * Provides consistent error handling and fallback messaging. */ export declare class BrowserService { private logger; constructor(logger: LoggerService); /** * Opens a URL in the default browser with fallback to manual instruction. * @param url - URL to open * @param description - Optional description for logging */ openUrl(url: string, description?: string): Promise; }