import type { FC } from 'react'; import type { TdSearchProps } from './type'; import type { StyledProps } from '../common'; export interface SearchProps extends TdSearchProps, StyledProps { } declare const Search: FC; export default Search;