import React, { FC } from 'react'; import { BackgroundPropType, StyleProp, TouchableWithoutFeedback, ViewStyle } from 'react-native'; declare type Props = React.ComponentProps & { borderless?: boolean; background?: BackgroundPropType; disabled?: boolean; onPress?: () => void | null; rippleColor?: string; underlayColor?: string; children: React.ReactNode; style?: StyleProp; }; declare const TouchableRipple: FC; declare type TouchableRippleType = typeof TouchableRipple; interface TouchableRippleInterface extends TouchableRippleType { supported: boolean; } declare const LastTouchableRipple: TouchableRippleInterface; export default LastTouchableRipple;