export declare type PanEventName = 'pan' | 'panstart' | 'panmove' | 'panend' | 'pancancel' | 'panleft' | 'panright' | 'panup' | 'pandown'; export declare type PinchEventName = 'pinch' | 'pinchstart' | 'pinchmove' | 'pinchend' | 'pinchcancel' | 'pinchin' | 'pinchout'; export declare type PressEventName = 'press' | 'pressup'; export declare type RotateEventName = 'rotate' | 'rotatestart' | 'rotatemove' | 'rotateend' | 'rotatecancel'; export declare type SwipeEventName = 'swipe' | 'swipeleft' | 'swiperight' | 'swipeup' | 'swipedown'; export declare type TapEventName = 'tap'; export declare type TouchEventName = PanEventName | PinchEventName | PressEventName | RotateEventName | SwipeEventName | TapEventName;