/** * @description 复制网页文字到剪切板,之后可以粘贴在任何可粘贴的地方 * @param { String } str 拷贝的内容 * @example * copyText('hello world') */ declare function copyText(str: string): void; export default copyText;