import * as React from 'react'; import './style/index.less'; export type progressSize = 'xs' | 'sm' | 'md' | 'lg'; interface ProgressOptions { value: number; animated: boolean; showLabel: boolean; size: progressSize; color: string; trailColor: string; status: 'normal' | 'success' | 'exception'; vertical: boolean; textStyle: React.CSSProperties; innerText: boolean; } export type ProgressProps = Partial; declare const LinearProgress: React.FC; export default LinearProgress;