export declare type Touch = { force: number; identifier: number; locationX: any; locationY: any; pageX: number; pageY: number; target: any; }; export declare type TouchEvent = { altKey: boolean; ctrlKey: boolean; metaKey: boolean; shiftKey: boolean; changedTouches: Array; force: number; identifier: number; locationX: any; locationY: any; pageX: number; pageY: number; target: any; timeStamp: number; touches: Array; type: string; }; export declare const BLUR = "blur"; export declare const CONTEXT_MENU = "contextmenu"; export declare const FOCUS_OUT = "focusout"; export declare const MOUSE_DOWN = "mousedown"; export declare const MOUSE_MOVE = "mousemove"; export declare const MOUSE_UP = "mouseup"; export declare const MOUSE_CANCEL = "dragstart"; export declare const TOUCH_START = "touchstart"; export declare const TOUCH_MOVE = "touchmove"; export declare const TOUCH_END = "touchend"; export declare const TOUCH_CANCEL = "touchcancel"; export declare const SCROLL = "scroll"; export declare const SELECT = "select"; export declare const SELECTION_CHANGE = "selectionchange"; export declare function isStartish(eventType: any): boolean; export declare function isMoveish(eventType: any): boolean; export declare function isEndish(eventType: any): boolean; export declare function isCancelish(eventType: any): boolean; export declare function isScroll(eventType: any): boolean; export declare function isSelectionChange(eventType: any): boolean;