/// import { Component } from 'react'; import { IStepsPropTypes } from "./PropsType"; import Step from './Step'; export default class Steps extends Component { constructor(props: any); static defaultProps: { prefixCls: string; iconPrefix: string; direction: string; labelPlacement: string; current: number; status: string; size: string; progressDot: boolean; }; static Step: typeof Step; calcTimeout: any; state: { lastStepOffsetWidth: number; }; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; calcStepOffsetWidth: () => void; render(): JSX.Element; }