import { FC, HTMLAttributes } from 'react'; /** * Renders an Icon to the left/right of an input element */ declare const InputIcon: FC; interface InputIcon extends HTMLAttributes { } export default InputIcon;