import * as React from "react"; import { BackgroundPropType, StyleProp, TouchableWithoutFeedback, ViewStyle } from "react-native"; import { DefaultTheme } from "styled-components"; declare type Props = React.ComponentProps & { borderless?: boolean; background?: BackgroundPropType; disabled?: boolean; onPress?: () => void | null; rippleColor?: string; underlayColor?: string; children: React.ReactNode; style?: StyleProp; theme: DefaultTheme; }; declare const TouchableRipple: { ({ style, background, borderless, disabled: disabledProp, rippleColor, underlayColor, children, ...rest }: Props): JSX.Element; supported: boolean; }; export default TouchableRipple;