/** * Validates a URL to ensure it uses an allowed protocol (http or https). */ export declare function validateUrl(url: string): string; /** * Opens a URL in the system's default browser. */ export declare function openUrl(url: string): void;