declare const emulateTouchStart: (ev: any) => void; declare const emulateTouchMove: (ev: any) => void; declare const emulateTouchEnd: (ev: any) => void; declare function useTouchEmulator(dom?: HTMLElement | Window): void; declare const touchEmulator: (dom?: HTMLElement | Window) => () => void; export default useTouchEmulator; export { touchEmulator, emulateTouchStart, emulateTouchMove, emulateTouchEnd };