import { default as React } from 'react';
export interface Props {
    id?: string;
    value?: string;
    isLoading?: boolean;
    size?: string;
    disabled?: boolean;
    placeholder?: string;
    autoFocus?: boolean;
    variant?: 'flat' | 'underlined' | 'bordered';
    inputClassName?: string;
    className?: string;
    onChange?: (inputValue: string) => void;
    onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>, value: string, handleBlurInput?: () => void) => void;
    onBlur?: () => void;
    onFocus?: () => void;
    onClearSearch?: () => void;
    onSearch?: () => void;
}
declare const SearchInput: React.FC<Props>;
export default SearchInput;
