import { Property, ResolvedProperty } from "../../types";
/**
 * Component in charge of rendering the description of a field
 * as well as the error message if any.
 */
export declare function FieldHelperText({ error, showError, property, includeDescription, disabled }: {
    error?: string;
    showError?: boolean;
    property: ResolvedProperty | Property;
    includeDescription?: boolean;
    disabled?: boolean;
}): import("react/jsx-runtime").JSX.Element | null;
