import * as React from 'react'; interface Props extends React.ImgHTMLAttributes { isPad?: boolean; onLongTouch?: () => void; } export default class Img extends React.Component { private touchTimer; private touchX; private touchY; onTouchStart: (e: React.TouchEvent) => void; onTouchEnd: (e: React.TouchEvent) => void; render(): JSX.Element; } export {};