import type { ComponentPropsWithoutRef, ReactNode } from "react"; import { type As, type MergeWithAs, type TextAreaProps } from "@heroui/react"; import type { Field } from "soda-tanstack-form"; export type FormTextareaProps = MergeWithAs, ComponentPropsWithoutRef, TextAreaProps, AsComponent> & { field: Field; component?: (props: MergeWithAs, ComponentPropsWithoutRef, TextAreaProps, AsComponent>) => ReactNode; }; export declare function FormTextarea({ field, component: Textarea2, ...rest }: FormTextareaProps): ReactNode;