import type { PressableProps, ViewProps } from 'react-native'; export interface TouchableOpacityProps extends Omit { style?: ViewProps['style']; backgroundColor?: string; throttleTime?: number; throttleOptions?: { leading: boolean; trailing: boolean; }; activeBackgroundColor?: string; activeOpacity?: number; }