import React from 'react'; import { LabeledValue } from '../select'; import { BaseInputProps } from '../input/Input'; export interface SearchProps extends BaseInputProps { multipleValue?: string | number; multipleDefaultValue?: string | number; multipleOption?: LabeledValue[]; enterButton?: boolean | string; loading?: boolean; onSearch?: (value: string, e: any) => void; onChangeMultiple?: (value: string | number) => void; onCompositionStart?: any; onCompositionEnd?: any; addonSelectStyle?: React.CSSProperties; } declare const Search: React.ForwardRefExoticComponent>; export default Search;