/** * Opens the specified URL in the default system web browser. */ export declare function openUrl(url: string): void; /** * Copies the specified text to the system clipboard. */ export declare function copyToClipboard(text: string): Promise;