import { ContinousBaseGesture } from './gesture'; import type { RotationGestureHandlerEventPayload } from '../GestureHandlerEventPayload'; import { GestureUpdateEvent } from '../gestureHandlerCommon'; type RotationGestureChangeEventPayload = { rotationChange: number; }; export declare class RotationGesture extends ContinousBaseGesture { constructor(); onChange(callback: (event: GestureUpdateEvent) => void): this; } export type RotationGestureType = InstanceType; export {};