import React from 'react'; export interface TextareaProps extends React.HTMLAttributes { block?: boolean; /** * Set the variants of textarea */ variant?: 'default' | 'transparent' | 'danger' | 'success' | 'warning'; /** * Set the shap of textarea */ shap?: 'square' | 'rounded' | 'circle'; } export declare const Textarea: React.FC;