import { Plugin } from "prosemirror-state"; import type { EditorState, Transaction } from "prosemirror-state"; import type { Editor } from "../types.js"; export declare const getPasteRange: (state: EditorState) => number[] | null; export declare const resetPasteRange: (tr: Transaction) => void; export declare const clipboardPlugin: (options: { editor: Editor; viewType: string; }) => Plugin<{ pasteRange: null; }>; //# sourceMappingURL=clipboard.d.ts.map