import { OverrideProps } from '@bifrostui/types'; import React, { Ref, TextareaHTMLAttributes } from 'react'; interface AutoSizeType { minHeight?: number; maxHeight?: number; } export type TextAreaProps = OverrideProps<{ props: P & { /** * 输入框内容,受控时使用 */ value?: string; /** * 默认输入框内容,非受控时使用 */ defaultValue?: string; /** * 内部