import { BoxProps, CircularProgressProps } from '@mui/material';
import { ReactNode } from 'react';
export interface CircularProgressWithLabelModel extends CircularProgressProps {
    value: number;
    children: ReactNode;
    boxProps?: BoxProps;
}
