import React, { InputHTMLAttributes } from 'react'; export interface BTextareaProps extends InputHTMLAttributes { className?: string; disabled?: boolean; errorMessage?: string; height?: string; width?: string; } export declare const BTextarea: React.NamedExoticComponent;