import * as React from 'react'; interface TextAreaProps extends React.ComponentPropsWithRef<'textarea'> { resize?: React.CSSProperties['resize']; strokeColor?: string; } export declare const TextArea: React.ForwardRefExoticComponent & React.RefAttributes>; export {};