import React from 'react'; import { TextStyle, ViewStyle, ColorValue } from 'react-native'; import { PickerProps } from '@react-native-picker/picker'; declare type Props = PickerProps & { style?: TextStyle; options?: Array; placeholder?: string; showPlaceholder?: boolean; labelKey?: string; valueKey?: string; selectedValue?: string; onValueChange?: (val: any) => void; mode?: 'dropdown' | 'dialog'; containerStyle?: ViewStyle; iosModalBackGroundColor?: ColorValue; textStyle?: TextStyle; placeholderColor?: ColorValue; }; declare const RNPicker: React.FC; export default RNPicker;