// NativeWind v4 className augmentation import 'react-native'; declare module 'react-native' { interface ViewProps { className?: string; } interface TextProps { className?: string; } interface ImageProps { className?: string; } interface TextInputProps { className?: string; } interface TouchableOpacityProps { className?: string; } interface TouchableHighlightProps { className?: string; } interface TouchableWithoutFeedbackProps { className?: string; } interface ScrollViewProps { className?: string; } interface FlatListProps { className?: string; } interface SectionListProps { className?: string; } interface ModalProps { className?: string; } interface PressableProps { className?: string; } interface KeyboardAvoidingViewProps { className?: string; } }