export type TapFuncType = (clientX: number, clientY: number, e: TouchEvent | MouseEvent) => void; export default function withContinuousTap(singleTap: TapFuncType, doubleTap: TapFuncType): TapFuncType;