import * as React from 'react'; import GenericTouchable from './GenericTouchable'; import type { GenericTouchableProps } from './GenericTouchableProps'; /** * @deprecated TouchableWithoutFeedback will be removed in the future version of Gesture Handler. */ export type TouchableWithoutFeedbackProps = GenericTouchableProps; /** * @deprecated TouchableWithoutFeedback will be removed in the future version of Gesture Handler. */ declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent>; export default TouchableWithoutFeedback;