import {TextareaProps as NativeTextareaProps} from '@tarojs/components' import {CSSProperties, FunctionComponent} from 'react' export interface TextareaProps extends NativeTextareaProps { /** * @description 是否有关闭按钮 * @default true */ closeable?: boolean style?: CSSProperties textareaStyle?: CSSProperties textareaClassName?: string backgroundColor?: string textColor?: string closeIconColor?: string textPlaceholderColor?: string countColor?: string countErrorColor?: string } declare const Textarea: FunctionComponent export {Textarea}