import { BaseButtonProps, BorderlessButtonProps, RawButtonProps, RectButtonProps } from '../components/GestureButtons'; import { GestureEvent, GestureEventPayload, HandlerStateChangeEvent, HandlerStateChangeEventPayload } from './gestureHandlerCommon'; import { FlingGestureHandlerEventPayload, FlingGestureHandlerProps } from './FlingGestureHandler'; import { ForceTouchGestureHandlerEventPayload, ForceTouchGestureHandlerProps } from './ForceTouchGestureHandler'; import { LongPressGestureHandlerEventPayload, LongPressGestureHandlerProps } from './LongPressGestureHandler'; import { PanGestureHandlerEventPayload, PanGestureHandlerProps } from './PanGestureHandler'; import { PinchGestureHandlerEventPayload, PinchGestureHandlerProps } from './PinchGestureHandler'; import { RotationGestureHandlerEventPayload, RotationGestureHandlerProps } from './RotationGestureHandler'; import { TapGestureHandlerEventPayload, TapGestureHandlerProps } from './TapGestureHandler'; import { NativeViewGestureHandlerPayload, NativeViewGestureHandlerProps } from './NativeViewGestureHandler'; export declare type GestureHandlerGestureEventNativeEvent = GestureEventPayload; export declare type GestureHandlerStateChangeNativeEvent = HandlerStateChangeEventPayload; export declare type GestureHandlerGestureEvent = GestureEvent; export declare type GestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type NativeViewGestureHandlerGestureEvent = GestureEvent; export declare type NativeViewGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type TapGestureHandlerGestureEvent = GestureEvent; export declare type TapGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type ForceTouchGestureHandlerGestureEvent = GestureEvent; export declare type ForceTouchGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type LongPressGestureHandlerGestureEvent = GestureEvent; export declare type LongPressGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type PanGestureHandlerGestureEvent = GestureEvent; export declare type PanGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type PinchGestureHandlerGestureEvent = GestureEvent; export declare type PinchGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type RotationGestureHandlerGestureEvent = GestureEvent; export declare type RotationGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type FlingGestureHandlerGestureEvent = GestureEvent; export declare type FlingGestureHandlerStateChangeEvent = HandlerStateChangeEvent; export declare type NativeViewGestureHandlerProperties = NativeViewGestureHandlerProps; export declare type TapGestureHandlerProperties = TapGestureHandlerProps; export declare type LongPressGestureHandlerProperties = LongPressGestureHandlerProps; export declare type PanGestureHandlerProperties = PanGestureHandlerProps; export declare type PinchGestureHandlerProperties = PinchGestureHandlerProps; export declare type RotationGestureHandlerProperties = RotationGestureHandlerProps; export declare type FlingGestureHandlerProperties = FlingGestureHandlerProps; export declare type ForceTouchGestureHandlerProperties = ForceTouchGestureHandlerProps; export declare type RawButtonProperties = RawButtonProps; export declare type BaseButtonProperties = BaseButtonProps; export declare type RectButtonProperties = RectButtonProps; export declare type BorderlessButtonProperties = BorderlessButtonProps;