declare abstract class Gesture { private callback; constructor(eventName: any, callback: any); protected dispatchEvent(event: any, params?: any): void; abstract handleTouchStart(event: any): any; abstract handleTouchMove(event: any): any; abstract handleTouchEnd(event: any): any; } declare const THRESHOLD: { PAN_BEFORE_HOLD: number; HOLD: number; DOUBLE_TAP: number; TAP: number; }; export { Gesture, THRESHOLD };