/// import React from 'react'; export interface StepsProps { prefixCls?: string; iconPrefix?: string; current?: number; status?: 'wait' | 'process' | 'finish' | 'error'; size?: 'default' | 'small'; direction?: 'horizontal' | 'vertical'; progressDot?: boolean | ((dot, { index, status, title, description }) => React.ReactNode); } export default class Steps extends React.Component { static Step: any; static defaultProps: { prefixCls: string; iconPrefix: string; current: number; }; static propTypes: { prefixCls: any; iconPrefix: any; current: any; }; render(): JSX.Element; } export interface StepProps { title: string | React.ReactNode; description?: string | React.ReactNode; icon?: string | React.ReactNode; status?: 'wait' | 'process' | 'finish' | 'error'; } export const Step = class extends React.Component { render(): JSX.Element; }