import { CircularProgressProps } from '@mui/material';
import { FunctionComponent } from 'react';
import { GenericSizeMap } from '../../BrandCore/primitiveVariables.js';

type ProgressSizing = Exclude<GenericSizeMap, 'none'>;
interface ProgressProps extends CircularProgressProps {
    sizing?: ProgressSizing;
}
declare const Progress: FunctionComponent<ProgressProps>;

export { Progress as default };
export type { ProgressProps, ProgressSizing };
