/// import { TouchableNativeFeedbackProps, TouchableOpacityProps } from 'react-native'; export interface TouchableItemProps extends TouchableNativeFeedbackProps, TouchableOpacityProps { borderless?: boolean; pressColor?: 'primary' | 'secondary' | 'error' | 'success' | 'warning' | string; } export declare const TouchableItemDefaultProps: { borderless: boolean; }; /** * # 👆 TouchableItem * TouchableItem renders a touchable that looks native on both iOS and Android. * * It provides an abstraction on top of TouchableNativeFeedback and * TouchableOpacity. * * On iOS you can pass the props of TouchableOpacity, on Android pass the props * of TouchableNativeFeedback. */ export declare const TouchableItem: import("react").ComponentType;