import { ReactNode } from 'react'; import { TouchableOpacityProps, View } from 'react-native'; import { ObjectRef, TouchableType } from '../../types'; export interface TouchableProps extends TouchableOpacityProps { refView?: ObjectRef; touchableType?: TouchableType; children?: ReactNode; } export default function Touchable({ refView, touchableType, activeOpacity, style, children, ...props }: TouchableProps): JSX.Element;