import type {} from '../typedef'; /** * @description Write the content to the clipboard * - Iframe is replaced with a placeholder : `
[iframe: iframe.src]
` * - `iframe placeholder` is re-rendered in `html.clean` when pasted into the editor. * @param {Element|Text|string} content Content to be copied to the clipboard * @returns {Promise} If it fails, it returns `false`. */ export function write(content: Element | Text | string): Promise; declare namespace _default { export { write }; } export default _default;