import * as React from "react"; import { CommonStyleProps } from "../systemHelpers"; export declare type ManagedTextAreaFieldProps = { hasError?: boolean; disabled?: boolean; placeholder?: string; id: string; label?: string; caption?: string; type?: string; } & React.HTMLAttributes & React.HTMLAttributes & CommonStyleProps; export declare const ManagedTextAreaField: { ({ disabled, hasError, placeholder, label, caption, id, children, type, fontFamily, borderColor, color, fontWeight, ...props }: ManagedTextAreaFieldProps): JSX.Element; displayName: string; };