import type { TypographyVariant } from '@mui/material'; import React from 'react'; import type { EllipsizeBoxProps } from '../../shared/index.js'; /** Props for {@link PropertyValue}. */ export interface PropertyValueProps extends EllipsizeBoxProps { typographyVariant?: TypographyVariant; value?: string | number | boolean | null; } /** Ellipsized display of a property field value. */ export declare const PropertyValue: { ({ ref, typographyVariant, value, ...props }: PropertyValueProps): React.JSX.Element | null; displayName: string; }; //# sourceMappingURL=Value.d.ts.map