import React from 'react';
type NativeInputProps = React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
export declare const Input: React.ForwardRefExoticComponent<{
    onChange: (keywords: string) => void;
} & Pick<NativeInputProps, "onFocus" | "onBlur" | "onMouseEnter"> & React.RefAttributes<HTMLInputElement>>;
export {};
