/// import type { TextAreaProps as AntdTextAreaProps, TextAreaRef } from 'antd/lib/input/TextArea'; import type { UIComponentProps } from '../config'; export type TextareaProps = UIComponentProps & Omit & { /** 是否resize-none */ resizeNone?: boolean; }; declare const Component: import("react").ForwardRefExoticComponent & { /** 是否resize-none */ resizeNone?: boolean | undefined; } & import("react").RefAttributes>; export default Component;