import type { NodeSelection } from "prosemirror-state"; import type { EditorView } from "prosemirror-view"; interface MenuOption { text: string; className: string; action: () => void; } /** * Create a contributor drop-up menu * @param selection - ProseMirror selection object * @param view - ProseMirror editor view * @param menuOptions - Optional custom menu options * @returns The drop-up DOM element */ export declare const createDropUp: (selection: NodeSelection, view: EditorView, menuOptions?: MenuOption[] | null) => HTMLElement; export {}; //# sourceMappingURL=dropup.d.ts.map