import type { PressableProps, ViewStyle } from 'react-native'; export interface RippleProps extends Omit { rippleColor?: string; rippleOpacity?: number; rippleDuration?: number; style?: ViewStyle; children: React.ReactNode; }