import { Ref } from 'vue';
import { RotateEvent } from '..';
declare const useRotation: (currentRotation: Ref<number>, rotateCallback?: ((event: RotateEvent) => void) | undefined) => {
    onRotateClockwise: () => void;
    onRotateCounterclockwise: () => void;
};
export default useRotation;
