/** * Creates an image NodeView with corner and side drag handles for resizing. * Hold Shift while dragging to lock the aspect ratio. * * Wired up by the `Image` extension in `WordEditor`'s `addNodeView` so any * `` node in the document gets these handles when selected. */ export declare function createImageResizeView(node: any, view: any, getPos: any): { dom: HTMLDivElement; update(updatedNode: any): boolean; selectNode: () => void; deselectNode: () => void; stopEvent: (event: Event) => boolean; destroy(): void; };