import * as React from 'react'; interface IProps { id?: string; name: string; label?: string; placeholder?: string; errorMsg?: string; } declare const TextArea: React.FC; export default TextArea;