import React, { ComponentPropsWithoutRef } from 'react'; export interface Props { description?: React.ReactNode; error?: React.ReactNode | React.ReactNode[]; label?: React.ReactNode; labelId?: string; rows?: 1 | 2 | 3 | 4 | 5 | 6 | 7; resize?: boolean; } export type TextareaProps = Props & ComponentPropsWithoutRef<'textarea'>; export declare const Textarea: React.ForwardRefExoticComponent, HTMLTextAreaElement>, "ref"> & React.RefAttributes>; //# sourceMappingURL=Textarea.d.ts.map