import * as React from 'react'; declare const ProgressBar: React.FunctionComponent; export interface ProgressBarProps { prefixCls?: string; style?: React.CSSProperties; className?: string; percent?: number; backgroundColor?: string; colorStart?: string; colorEnd?: string; fixed?: boolean; } export default ProgressBar;