import React, { MouseEventHandler } from 'react'; import { IconButtonProps } from '../Button'; import { InputProps } from './Input'; export type SearchInputProps = Omit & { onSearch?: (value: string) => void; onClear?: MouseEventHandler; disableClearable?: boolean; disableSearchable?: boolean; searchType?: 'icon' | 'button'; defaultValue?: string; value?: string; onChange?: (value: string) => void; SearchButtonProps?: IconButtonProps; ClearButtonProps?: IconButtonProps; }; export declare const SearchInput: React.FC;