import React from 'react'; import { type TextareaAutoSizeOwnProps } from './@commons'; import { type ElementProps } from '../../../types/element/elementProps'; import { type InputWrapperProps } from '../Input/@compound'; import { type InputProps } from '../Input/Input'; export type TextareaProps = ElementProps<'textarea', Pick & Pick & Pick & { autoSize?: boolean; }>; export declare const Textarea: React.ForwardRefExoticComponent, HTMLTextAreaElement>, "ref">, "children">, "label" | "error" | "size" | "topSlot" | "bottomSlot" | "autoSize" | "minRows" | "maxRows"> & Pick & Pick & Pick & { autoSize?: boolean | undefined; } & React.RefAttributes>; //# sourceMappingURL=Textarea.d.ts.map