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