import React from 'react'; export interface TextAreaProps { value?: any; visible?: any; onChange?: any; onValueRelease?: any; defaultValue?: any; getCompPropMapState?: any; compId?: any; getFieldDecorator?: any; form?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; compType?: any; onSelectedRowsRelease?: any; onSelectedRowKeysRelease?: any; onSelectedKeysRelease?: any; onEditingKeyRelease?: any; onInlineEditRelease?: any; onInlineSaveRelease?: any; onSelectedDataRelease?: any; pageState?: any; pagePublicState?: any; maxLength?: any; minLength?: any; style?: React.CSSProperties; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; rules?: any[]; colon?: boolean; isFormChild?: boolean | undefined; readOnly?: boolean; tipSize?: string; tipWidth?: string; tipHeight?: string; } export interface WrapperTextAreaProps { children: React.ReactElement; } declare const TEXTAREA_WRAPPER_CLASSNAME = "ued-textarea-wrap"; declare const WrapperTextArea: React.FC; declare const TextArea: React.ForwardRefExoticComponent>; export default TextArea; export { WrapperTextArea, TEXTAREA_WRAPPER_CLASSNAME };