import type { ReactNode } from 'react'; import type { ViewStyle, StyleProp } from 'react-native'; export interface TouchCbViewProps { delayLongPress?: number; delayPressIn?: number; delayPressOut?: number; disabled?: boolean; viewStyle?: ViewStyle | StyleProp; onLongPress?: () => void; onPress?: () => void; onPressOut?: () => void; accessible?: boolean; accessibilityLabel?: string; accessibilityHint?: string; children: ((pressed: boolean) => ReactNode) | ReactNode; }