import { CircularProgressProps } from '@mui/material';
export interface CircularProgressModel extends CircularProgressProps {
    size?: number;
    backgroundColor?: string;
    colorProgress?: string;
}
