import { ReactElement } from 'react'; import { FieldComponentProps } from '@cezembre/forms'; export interface TextareaProps extends FieldComponentProps { label?: string; placeholder?: string; instructions?: string; spellCheck?: boolean; } export declare function Textarea({ value, error, warning, isActive, visited, submitted, onFocus, name, onChange, onBlur, label, placeholder, instructions, spellCheck, }: TextareaProps): ReactElement;