export type ImageRotationSession = { getRotation: () => number; setRotation: (degrees: number) => void; destroy: () => void; }; export type ImageRotationOptions = { toolbar: HTMLElement; rotateWrap: HTMLElement; stage: HTMLElement; image: HTMLImageElement; }; export declare function attachImageRotation(options: ImageRotationOptions): ImageRotationSession; //# sourceMappingURL=image-rotation.d.ts.map