import React from 'react'; import type { TextAreaProps as AntTextAreaProps, TextAreaRef } from 'antd-mobile/es/components/text-area'; import './index.less'; export declare type TextAreaProps = AntTextAreaProps; /** * @Author: wangyi * @Date: 2022-03-03 */ declare const TextArea: React.ForwardRefExoticComponent, HTMLTextAreaElement>, "disabled" | "onClick" | "readOnly" | "autoComplete" | "autoFocus" | "name" | "onFocus" | "onBlur" | "onCompositionStart" | "onCompositionEnd"> & { onChange?: ((val: string) => void) | undefined; value?: string | undefined; defaultValue?: string | undefined; placeholder?: string | undefined; rows?: number | undefined; maxLength?: number | undefined; showCount?: boolean | ((length: number, maxLength?: number | undefined) => React.ReactNode) | undefined; autoSize?: boolean | { minRows?: number | undefined; maxRows?: number | undefined; } | undefined; id?: string | undefined; } & import("antd-mobile/es/utils/native-props").NativeProps<"--font-size" | "--color" | "--placeholder-color" | "--text-align" | "--disabled-color" | "--count-text-align"> & React.RefAttributes>; export default TextArea;