import React from 'react'; export interface Props { id: string; name: string; label?: string | JSX.Element; hasBar?: boolean; isFlex?: boolean; inputBg?: string; noMargin?: boolean; hasBorder?: boolean; placeholder: string; inputBoxShadow?: string; borderWithBar?: boolean; fontSizeFamilyInput?: string; fontSizeFamilyLabel?: string; } export interface IInputProps { configs: Props; } export declare function TextAreaComponent({ configs, ...rest }: any): React.JSX.Element;