/** * Copies a piece of text to the clipboard. Adapted from [StackOverflow][1]. * * @param {string} text The text to copy. * @returns {Promise} Whether the operation was successful. */ export declare function copyTextToClipboard(text: string): Promise;