import type { CreateElementData } from '../../pluginUtils/CreateElement/CreateElementData'; import type { DNDDirectionX, DnDDirectionY } from '../types/DragAndDropContext'; /** * @internal */ export interface OnShowResizeHandle { (elementData: CreateElementData, x: DNDDirectionX, y: DnDDirectionY): void; } /** * @internal */ export declare function createImageResizer(doc: Document, disableSideResize: boolean, onShowResizeHandle?: OnShowResizeHandle): HTMLDivElement[];