import React from 'react'; import { ProgressProps } from './index'; import { ConfigConsumerProps } from '../config-provider'; declare const ProgressStatuses: string[]; declare class Progress extends React.Component { renderProcessInfo(prefixCls: string, progressStatus: typeof ProgressStatuses[number]): JSX.Element; renderProgress: ({ getPrefixCls, direction }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; } export default Progress;