import * as React from 'react'; import * as PropTypes from 'prop-types'; import { ConfigConsumerProps } from '../config-provider'; export interface StepsProps { prefixCls?: string; iconPrefix?: string; className?: string; current?: number; initial?: number; labelPlacement?: 'horizontal' | 'vertical'; status?: 'wait' | 'process' | 'finish' | 'error'; size?: 'default' | 'small'; direction?: 'horizontal' | 'vertical'; progressDot?: boolean | Function; style?: React.CSSProperties; } export default class Steps extends React.Component { static Step: any; static defaultProps: { current: number; }; static propTypes: { prefixCls: PropTypes.Requireable; iconPrefix: PropTypes.Requireable; current: PropTypes.Requireable; }; renderSteps: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; }