import * as React from 'react'; import { Component } from "react"; export interface StepsProps { className?: string; current?: number; initial?: number; onChange?: (current: number) => void; onClick?: React.MouseEventHandler; description?: any; status?: 'wait' | 'process' | 'finish' | 'error'; title?: React.ReactNode; style?: React.CSSProperties; children?: React.ReactNode; direction?: 'vertical' | 'horizontal'; } export default class NeoSteps extends Component { constructor(props: any); classes: string; render(): React.JSX.Element; }