import * as React from "react"; import * as PropTypes from "prop-types"; interface Props { onPress: () => void; onLongPress: () => void; } export default class TouchableWithoutFeedback extends React.Component { pressedDown: boolean; startedTime: number; static defaultProps: { onPress: () => void; onLongPress: () => void; }; static propTypes: { onPress: PropTypes.Requireable<(...args: any[]) => any>; onLongPress: PropTypes.Requireable<(...args: any[]) => any>; }; onDown(): void; onUp(): void; render(): React.DetailedReactHTMLElement<{ onResponderGrant: () => void; onResponderRelease: () => void; children: any; }, HTMLElement>; } export {};