import React from 'react'; import { SearchProps as InputSearchProps } from '../input/Search'; import Input from '../input/Input'; import type { ExtendedInputProps } from '../input/Input'; export interface SearchProps extends Omit, ExtendedInputProps { brandType?: boolean; } declare const Search: React.ForwardRefExoticComponent>; export { Search }; export default Search;