import { BoxProps } from '@mui/material'; import { ReactNode } from 'react'; import { NumberWithUnitValue } from '../Number'; type PropertyIndicator = { value: NonNullable; unit: string; }; type FormPropertyBoxProps = BoxProps & { title: string; hint?: string | ReactNode; indicator?: PropertyIndicator; colorIndicator?: string; children: ReactNode; }; export declare const FormPropertyBox: (props: FormPropertyBoxProps) => import("react/jsx-runtime").JSX.Element; export {};