import { LinearProgressProps } from '@mui/material';
import { KpiIndicatorColor } from '../../../KpiIndicator/utils.js';

interface StyledLinearProgressProps extends LinearProgressProps {
    checked?: boolean;
    barColor?: KpiIndicatorColor;
}

export type { StyledLinearProgressProps };
