/// import React from 'react'; export interface StepsProps { prefixCls?: string; iconPrefix?: string; direction?: string; labelPlacement?: string; children: any; status?: string; size?: string; current?: number; } export default class Steps extends React.Component { static Step: any; static defaultProps: { prefixCls: string; iconPrefix: string; labelPlacement: string; direction: string; current: number; }; stepRefs: any; stepsRef: any; componentDidMount(): void; componentDidUpdate(): void; render(): JSX.Element; }