import React from 'react'; declare type Props = { required?: boolean; children: string; type?: string; fieldId?: string; name?: string; label?: boolean; error?: string; placeholder?: string; options: any; className?: string; tooltip?: string; strength?: boolean; displayProperty?: string; formId: string; }; export declare const TextArea: React.FC; export default TextArea;