import React from 'react';
import type { BoxProps } from '@mui/material/Box';
interface NumberLabelProps extends BoxProps {
    value?: number;
    label: string;
    loading?: boolean;
    children?: React.ReactNode;
    minWidth?: number;
}
export default function NumberLabel({ value, label, loading, children, minWidth, ...props }: NumberLabelProps): JSX.Element;
export {};
