import { default as React } from 'react'; import { TextareaResizeType } from '../StyledTextarea'; export interface TextareaProps { value?: string; defaultValue?: string; onChange?: (value: string) => void; label?: React.ReactNode; placeholder?: string; rows?: number; disabled?: boolean; resize?: TextareaResizeType; autofocus?: boolean; className?: string; backdropBlur?: boolean; name?: string; ref?: React.Ref; } export declare function Textarea(props: TextareaProps): import("react/jsx-runtime").JSX.Element;