/// import { RotationGestureHandlerEventPayload } from './GestureHandlerEventPayload'; import { BaseGestureHandlerProps } from './gestureHandlerCommon'; /** * @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead. */ export interface RotationGestureHandlerProps extends BaseGestureHandlerProps { } export declare const rotationHandlerName = "RotationGestureHandler"; /** * @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead. */ export type RotationGestureHandler = typeof RotationGestureHandler; /** * @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead. */ export declare const RotationGestureHandler: import("react").ComponentType>;