1 |
|
2 | import { RotationGestureHandlerEventPayload } from './GestureHandlerEventPayload';
|
3 | import { BaseGestureHandlerProps } from './gestureHandlerCommon';
|
4 | export interface RotationGestureHandlerProps extends BaseGestureHandlerProps<RotationGestureHandlerEventPayload> {
|
5 | }
|
6 | export declare const rotationHandlerName = "RotationGestureHandler";
|
7 | export type RotationGestureHandler = typeof RotationGestureHandler;
|
8 | export declare const RotationGestureHandler: import("react").ComponentType<RotationGestureHandlerProps & import("react").RefAttributes<any>>;
|