import { InferVoidNode } from '../../doc/types-infer.js'; import { DocNode } from '../../doc/types.js'; import { Editor } from '../../editor.js'; /** * A plugin to handle copying / pasting plain text. */ export declare function plainTransferPlugin(editor: Editor, options?: { voidToString?: (node: InferVoidNode) => string; }): void;