/// import { CircularProgressProps as Props } from '@mui/material/CircularProgress'; export interface CircularProgressPropsOrion { props: Props; /** * TamaƱno en px */ size?: number; text?: string; /** * Valor de progreso de 0 a 100 */ value: number; } declare const CircularProgress: (props: CircularProgressPropsOrion) => JSX.Element; export default CircularProgress;