importReactfrom'react';
import { InputProps } from'./input.interface';
/**
* An input component that comes packed with features
*/exportdeclareconstInput: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLTextAreaElement | HTMLInputElement>>;