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