import * as React from 'react';
import { TouchableOpacityProps } from 'react-native';
export interface TouchableProps extends TouchableOpacityProps {
children: React.ReactChildren | React.ReactElement;
}
export declare function Touchable({ children, ...props }: TouchableProps): JSX.Element;