UNPKG

@uiw/react-native

Version:
14 lines (13 loc) 502 B
import React from 'react'; import { ViewStyle } from 'react-native'; import { PickerProps } from '../../Picker'; import { CascadePickerItemProps } from '../../Picker/components/WheelPicker/type'; export interface RnPickerProps extends Omit<PickerProps, 'data'> { disabled?: boolean; placeholder?: string; contentStyle?: ViewStyle; extra?: JSX.Element; showClear?: boolean; options?: CascadePickerItemProps[]; } export default function (props: RnPickerProps): React.JSX.Element;