import * as React from "react"; import { IconProps } from "../IconBase"; import { ViewProps } from "../View"; export interface FieldProps extends ViewProps { label?: React.ReactNode; labelSuffix?: React.ReactNode; id?: string; name: string; value?: any; required?: boolean; disabled?: boolean; description?: React.ReactNode; descriptionSuffix?: React.ReactNode; inputRef?: (instance: any) => void; statusText?: string; invalidText?: string; requiredText?: string; statusColor?: string; statusIcon?: React.ComponentType; errorFormat?: (errorMessage: string) => React.ReactNode | string; suppressError?: boolean; errorForLabel?: boolean; component?: string | React.ComponentType | React.ComponentType; } declare const _default: React.ComponentType; export default _default;