import type { Node } from 'prosemirror-model'; import type { EditorView } from 'prosemirror-view'; import "./ImgSettingsButton.css"; export declare const ImgSettingsButton: React.FC<{ node: Node; view: EditorView; getPos: () => number | undefined; updateAttributes: (o: object) => void; nodeElement: HTMLElement | null; visible: boolean; toggleEdit: () => void; edit: boolean; unsetEdit: () => void; onDelete: () => void; }>;