import { TextareaProps } from '@cloudscape-design/components'; import { Control, FieldPath, FieldPathValue, FieldValues, Path, RegisterOptions } from 'react-hook-form'; export interface CTextareaProps extends Omit { name: Path; control?: Control; defaultValue?: FieldPathValue>; rules?: Omit>, "valueAsNumber" | "valueAsDate" | "setValueAs" | "disabled">; shouldUnregister?: boolean; } declare const CTextarea: ({ name, control, defaultValue, rules, shouldUnregister, onBlur, onChange, ...props }: CTextareaProps) => import("react/jsx-runtime").JSX.Element; export default CTextarea;