import * as React from 'react'; import { PropsWithChildren } from 'react'; import GenericTouchable, { GenericTouchableProps } from './GenericTouchable'; export type TouchableWithoutFeedbackProps = GenericTouchableProps; const TouchableWithoutFeedback = React.forwardRef< GenericTouchable, PropsWithChildren >((props, ref) => ); TouchableWithoutFeedback.defaultProps = GenericTouchable.defaultProps; export default TouchableWithoutFeedback;