import React from 'react'; import { type TouchableOpacityProps } from 'react-native'; export type Props = TouchableOpacityProps & { variant?: any; lightColor?: string; darkColor?: string; }; declare const TouchableOpacityComponent: ({ style, ...otherProps }: Props) => React.JSX.Element; export default TouchableOpacityComponent; //# sourceMappingURL=TouchableOpacity.d.ts.map