import React, { TextareaHTMLAttributes } from 'react'; import { InputStyledProps } from './styled'; export interface TextareaProps extends InputStyledProps, TextareaHTMLAttributes { } export declare const Textarea: React.ForwardRefExoticComponent>;