import React from 'react'; import { customComponentOptions } from '../../../../forms/types'; interface SelectionItem { title: string; value: number | string; } interface props extends customComponentOptions { item?: any; selection?: SelectionItem[]; showTitle?: boolean; isScrollViewContainer?: boolean; multiLineLabels?: boolean; popup?: boolean; } declare const CustomPicker: (props: props) => React.JSX.Element; export default CustomPicker;