/// import { IVarBaseProps } from './VarBase'; export interface IVarDisplayProps extends IVarBaseProps { /** * Variable path in the data object. */ path?: string; /** * Current value (only used if context and path aren't available). * In most cases you aren't going to need this. */ value?: string | number; errorPath?: string; unit?: string; } /** * A simple component that displays a string or a numeric value. */ export declare const VarDisplay: ({ label, path, value, disabled, readOnly, className, error, errorPath, unit, }: IVarDisplayProps) => JSX.Element;