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; } declare const CustomSearchBar: ({ item, style, title, defaultValue, onChange, required, readonly, }: props) => React.JSX.Element; export default CustomSearchBar;