import { Plugin } from "prosemirror-state"; /** * A [plugin](http://prosemirror.net/docs/ref/#state.Plugin) that when enabled, * will captures clicks near and arrow-key-motion past places that don't have a * normally selectable position nearby, and creates a wedge selection for them. * * A wedge selection allows the user to insert content in places where there is * not yet space (e.g. inserting a paragraph after at table at the end of a * document). */ export declare class WedgePlugin extends Plugin { constructor(); }