import { ProgressProps } from 'antd'; import React from 'react'; import './index.less'; declare const ProgressStatuses: [ 'normal', 'exception', 'active', 'success', 'alarm' ]; type InfoConfig = { infoIcon?: 'success' | 'error' | 'alarm'; position?: 'inner' | 'outer'; unit?: string; }; type ExtraProps = { status?: (typeof ProgressStatuses)[number]; infoConfig?: InfoConfig; size?: 'large' | 'small'; }; declare const Progress: (props: Omit & ExtraProps) => React.JSX.Element; export { Progress };