/** * 复制到剪切板 * * @param {string} text 待复制的文本 * @returns {Promise} * @example * * ```ts * clipboardMp('stupid').then(() => {}); * ``` */ export declare function clipboardWeb(text: string): Promise;