import * as React from 'react'; import { FC } from 'react'; export type IProgressType = 'line' | 'circle'; export type IProgressStatus = 'success' | 'exception' | 'normal'; export type IProgress = { /** 类型 */ type?: IProgressType; /** 当前进度,范围0-100 */ current: number | number[]; /** 状态 */ status?: IProgressStatus; /** 不同阶段颜色 */ colors?: string[]; /** 组件宽度 */ width?: number | string; /** 组件高度, 当type 为circle时用于圆的线宽 */ height?: number; className?: string; style?: React.CSSProperties; children?: React.ReactNode; }; declare const Progress: FC; export { Progress };