import { FC } from 'react'; import { BackgroundPropType, StyleProp, TouchableWithoutFeedbackProps, ViewStyle, } from 'react-native'; import * as React from 'react'; export type TappableProps = TouchableWithoutFeedbackProps & { borderless?: boolean; background?: BackgroundPropType; disabled?: boolean; onPress?: () => void | null; rippleColor?: string; underlayColor?: string; children: React.ReactNode; style?: StyleProp; hoverable?: boolean; onHoverIn?: () => void; onHoverOut?: () => void; }; export declare const Tappable: FC;