/** * [复制] 尝试通过 web 本身实现复制功能 * @param {String / Number} value 要复制的值 */ declare const copy: (value: string | number) => void; export default copy;