/// <reference types="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): JSX.Element;
