import { InputSchema } from '@vtaits/form-schema/fields/input';
import { HTMLProps } from 'react';
import { F as FormApi, B as BaseFieldSchema } from './types-7iZNsJ6X.js';

type TextAreaSchema = Readonly<InputSchema<FormApi> & BaseFieldSchema & {
    textAreaProps?: Partial<HTMLProps<HTMLTextAreaElement>>;
}>;

export type { TextAreaSchema as T };
