import * as PropTypes from 'prop-types'; import { StandardProps, StyledProps } from '..'; export declare type ProgressClassProps = 'root' | 'progress' | 'isIndeterminate'; export interface ProgressProps extends StandardProps, StyledProps { value?: number; } export declare const ProgressPropTypes: { value: PropTypes.Requireable; };