import * as React from "react"; import { ProgressPropsType } from "./PropsType"; export interface ProgressProps extends ProgressPropsType { prefixCls?: string; className?: string; style?: React.CSSProperties; barStyle?: React.CSSProperties; } export default class Progress extends React.Component { static defaultProps: { prefixCls: string; percent: number; position: string; unfilled: boolean; appearTransition: boolean; }; barRef: HTMLDivElement | null; componentDidMount(): void; render(): JSX.Element; }