import { PluginContent } from '../pluginContent'; export interface RawXmlContent extends PluginContent { _type: 'rawXml'; xml: string | string[]; /** * Replace a part of the document with raw xml content. * If set to `true` the plugin will replace the parent paragraph () of * the tag, otherwise it will replace the parent text node (). */ replaceParagraph?: boolean; }