/** * Copies a plain-text string to the clipboard. * * @param text - The text to copy. * @returns `true` when the copy succeeded. * * @example * console.log(await copyText('Hello World')) * * @since 1.0.0 */ declare const copyText: (text: string) => Promise; export default copyText;