import { ScreenXY } from '../common/screen-xy'; export declare function on(obj: any, types: any, fn: Function, context?: any): any; export declare function off(obj: any, types?: any, fn?: Function, context?: any): any; export declare function stopPropagation(e: any): void; export declare function disableScrollPropagation(el: any): void; export declare function disableClickPropagation(el: any): void; export declare function preventDefault(e: any): void; export declare function stop(e: any): void; export declare function getMousePosition(e: any, container?: HTMLElement): ScreenXY; export declare function getWheelDelta(e: any): number; export declare function fakeStop(e: any): void; export declare function skipped(e: any): any; export declare function isExternalTarget(el: any, e: any): boolean; export { on as addListener }; export { off as removeListener };