/// interface IProps { label: string; name: string; value: string; onChange: any; error: string; } export default function TextArea(props: IProps): JSX.Element; export {};