import * as React from 'react'; const Input = React.forwardRef< HTMLInputElement, React.InputHTMLAttributes >(({ type, ...props }, ref) => { return ; }); Input.displayName = 'Input'; export { Input };