import { DetailedHTMLProps, InputHTMLAttributes, ReactElement } from 'react';
export interface SearchProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
    onClearValue?: () => void;
    className?: string;
    handleSearchChange?: any;
}
export declare const Search: (props: SearchProps) => ReactElement;
