import { ImageOperationState } from './use-image-operation-state'; export declare function useImageRotating(props: { imageOperationState: ImageOperationState; }): { clockwiseRotation: () => void; antiClockwiseRotation: () => void; isRotatedBy90Degrees: () => boolean; getRotateTransform: () => string; };