import { ReactElement } from 'react'; import { TextareaProps, StatefulTextareaProps } from './types'; export declare const Textarea: { (props: TextareaProps): ReactElement; displayName: string; }; export declare const StatefulTextarea: { (props: StatefulTextareaProps): ReactElement; displayName: string; };