import * as React from 'react'; interface IProps { id?: string; name: string; label?: string; type: string; errorMsg?: string; showLabel?: boolean; showAsterick?: boolean; labelWeight?: string; hasAria?: boolean; placeholder?: string; } declare const Input: React.FC; export default Input;