import React, { TextareaHTMLAttributes } from 'react'; import { IconElement } from '../data/icon'; import { MarginProps, WidthProps, FlexChildProps } from '../style/helpers'; export interface TextAreaProps extends MarginProps, WidthProps, FlexChildProps, TextareaHTMLAttributes { readonly label?: string; readonly description?: string; readonly errorMessage?: string; readonly icon?: IconElement; } export declare const TextArea: React.ForwardRefExoticComponent>; //# sourceMappingURL=textArea.d.ts.map