import React from 'react'; import { TextAreaItemPropsType } from './PropsType'; export declare type HTMLTextAreaProps = Omit, 'onChange' | 'onFocus' | 'onBlur' | 'value' | 'defaultValue' | 'type' | 'title'>; export interface TextareaItemProps extends TextAreaItemPropsType, HTMLTextAreaProps { prefixCls?: string; prefixListCls?: string; } export interface TextareaItemState { focus?: boolean; value?: string; } export interface FTextareaItemProps extends TextareaItemProps { forwardedRef?: any; } export declare class FxmTextareaItem extends React.Component { render(): JSX.Element; } declare const TextareaItem: any; export default TextareaItem;