import { type FormItemProps, type TextareaProps } from "dgz-ui/form";
import type { FieldValues } from "react-hook-form";
export type MyTextareaProps<TFieldValues extends FieldValues> = FormItemProps<TFieldValues> & TextareaProps;
export declare const MyTextarea: <TFieldValues extends FieldValues>({ control, name, label, helperText, required, rules, className, floatingError, ...props }: MyTextareaProps<TFieldValues>) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=MyTextarea.d.ts.map