import * as React from 'react'; import type { DataType, EventsType } from '../../../configs/components/form-text-area'; import type { CommonPropsType } from '../../types'; export type FormTextAreaProps = CommonPropsType & DataType & { onChange: (v: string) => void; disabled: boolean; readOnly: boolean; } & EventsType; declare const FormTextArea: React.ForwardRefExoticComponent & { onChange: (v: string) => void; disabled: boolean; readOnly: boolean; } & import("type-fest").Simplify> & React.RefAttributes>; export default FormTextArea;