import { ButtonProps } from 'antd/lib/button'; import { FC, IglooComponentProps } from '../types'; import './style'; import { ComponentProps } from '../utils/option-utils'; type IProps = IglooComponentProps & { className?: string; onSearch?: any; value?: any; multiple?: boolean; modalTitle?: string; placeHolder?: string; modalPlaceHolder?: string; optionsUpdating?: boolean; onChange?: any; okButtonProps?: ButtonProps; cancelButtonProps?: ButtonProps; } & ComponentProps; declare const SearchBox: FC; export default SearchBox;