/** * Created by yanming on 17/6/29. */ import * as React from 'react'; import { FlowItemProps as FlowItemBaseProps, FlowProps as FlowBaseProps } from './PropTypes'; export interface FlowPropsType extends FlowBaseProps { prefixCls?: string; className?: string; } export interface FlowItemPropsType extends FlowItemBaseProps { prefixCls?: string; className?: string; } export declare class FlowItem extends React.Component { static defaultProps: { prefixCls: string; status: string; }; render(): JSX.Element; } export default class Flow extends React.Component { static defaultProps: { prefixCls: string; current: number; direction: string; children: never[]; }; static Item: typeof FlowItem; render(): JSX.Element; }