import React from 'react'; import { StyledTextAreaVariants } from "./textarea-styled"; interface Props extends StyledTextAreaVariants { as?: keyof JSX.IntrinsicElements; label?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type TextareaProps = Props & NativeAttrs; declare const TextAreaComponent: React.ForwardRefExoticComponent>; export default TextAreaComponent;