import React from 'react'; import { WidthProps } from 'styled-system'; export interface TextareaProps extends Omit, 'width' | 'value'>, WidthProps { onReset?: () => void; isFocused?: boolean; defaultValue?: string; error?: boolean; className?: string; } declare const Textarea: React.ForwardRefExoticComponent>; export default Textarea;