/** * @see https://github.com/callstack/react-native-paper/tree/master/src/components/TouchableRipple */ import * as React 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; }; export declare const Tappable: { ({ style, background, borderless, disabled, rippleColor, children, ...rest }: Props): JSX.Element; supported: boolean; }; export {};