import React from 'react'; import { ImageOperationState } from './use-image-operation-state'; export declare function useImageZooming(props: { imageOperationState: ImageOperationState; }): { handleWheel: (event: React.WheelEvent) => void; zoomInByClicking: () => void; zoomOutByClicking: () => void; getZoomTransform: () => string; };