import React, { Ref } from 'react'; import { ProgressProps } from 'antd'; interface IProgressProps extends ProgressProps { isLoading?: boolean; ref?: Ref; percent?: number; width?: number; status?: 'active' | 'normal' | 'exception' | 'success' | undefined; className?: string; } declare const Progress: React.FC; export default Progress;