react-native-gifted-chat
Version:
The most complete chat UI for React Native
9 lines • 451 B
TypeScript
import React from 'react';
import { BaseButton } from 'react-native-gesture-handler';
import Animated from 'react-native-reanimated';
export type TouchableOpacityProps = Omit<React.ComponentProps<typeof BaseButton>, 'onPress'> & {
activeOpacity?: number;
onPress?: () => void;
} & React.ComponentProps<typeof Animated.View>;
export declare const TouchableOpacity: React.FC<TouchableOpacityProps>;
//# sourceMappingURL=TouchableOpacity.d.ts.map