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