import React, { ComponentProps } from 'react'; import { Input } from 'antd'; type SearchProps = ComponentProps; declare const Search: (props: SearchProps) => React.ReactNode; export default Search;