@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
13 lines (12 loc) • 471 B
TypeScript
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;