/// import { TextareaProps } from "@tarojs/components"; export interface NativeTextareaProps extends TextareaProps { nativeProps?: Record; readonly?: boolean; } declare function NativeTextarea(props: NativeTextareaProps): JSX.Element; export default NativeTextarea;