import React from 'react'; import { customComponentOptions } from '../../../../forms/types'; interface props extends customComponentOptions { item: any; style?: any; title?: string; defaultValue?: any; onChange: () => any; required?: boolean; readonly?: boolean; showTitle?: boolean; isScrollViewContainer?: boolean; } declare const CustomPicker: (props: props) => React.JSX.Element; export default CustomPicker;