import type { Rect } from 'roosterjs-content-model-types'; /** * @internal * Move rotate handle. When image is very close to the border of editor, rotate handle may not be visible. * Fix it by reduce the distance from image to rotate handle */ export declare function updateRotateHandle(editorRect: Rect, angleRad: number, wrapper: HTMLElement, rotateCenter: HTMLElement, rotateHandle: HTMLElement, isSmallImage: boolean, disableSideResize: boolean): void;