import type { InputProps } from 'antd'; import type { FC } from 'react'; interface SearchViewProps extends Omit { onSearch: (v?: string) => void; defaultValue?: string; value?: string; } declare const SearchView: FC; export default SearchView;