import React, { InputHTMLAttributes } from "react";
interface InputProps extends Omit, "value" | "disabled" | "onClick" | "onInput" | "type" | "role" | "onKeyUp" | "onKeyDown" | "autoComplete"> {
ref: React.Ref;
inputClassName?: string;
shouldShowSelectedOptions?: boolean;
value?: string;
}
declare const Input: React.ForwardRefExoticComponent & React.RefAttributes>;
export default Input;