import { InputSearchProps } from '../../common/components/input-search/InputSearch';
import { BaseInputFieldProps } from '../../common/types/input';
export interface SearchProps extends BaseInputFieldProps, InputSearchProps {
}
/**
* controlled
* uncontrolled
*
* The `` component is an input intended for search.
* It extends the interface of native html `` element.
*
* See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229e189d2dd3522b98a47c7) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/search) for further information about the element and related attributes.
*/
declare const Search: import("react").ForwardRefExoticComponent>;
export default Search;