import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * FormulaField - Read-only computed field * Values are computed on the backend and cannot be edited */ export declare function FormulaField({ value, field, ...props }: FieldWidgetComponentProps): React.JSX.Element;