/** * Copies the specified text to the clipboard. * * @param {string} textToCopy - The text to be copied to the clipboard. * @param {string} [type] - Optional MIME type for the clipboard data (e.g., 'text/plain', 'text/html'). * @returns {Promise} - A promise that resolves when the text is successfully copied to the clipboard. */ export declare function copyToClipboard(textToCopy: string, type?: string): Promise;