import React from 'react'; import { NativeAttributes } from '../Box'; export declare type TextAreaProps = NativeAttributes<'textarea'> & { /** The label that is associated with this textaera */ label: string; /** The variant of the input that decides the colors */ variant?: 'solid' | 'outline'; /** Whether the textarea has an invalid value */ invalid?: boolean; /** Whether the textarea is required or not */ required?: boolean; /** Whether the textarea is disabled or not */ disabled?: boolean; }; declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;