import * as React from "react";
import { HTMLMotionProps } from "framer-motion";
export interface InputProps extends HTMLMotionProps<"input"> {
}
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export { Input };
