import type { FC } from 'react'; export interface SearchInputProps { defaultValue?: string; disabled?: boolean; onSearch?: (val: string) => void; placeholder?: string; } declare const SearchInput: FC; export default SearchInput;