import * as React from 'react'; import { Component } from "react"; export interface StepProps { className?: string; current?: number; initial?: number; onChange?: (current: number) => void; onClick?: React.MouseEventHandler; description?: any; status?: 'wait' | 'process' | 'finish' | 'error'; title?: React.ReactNode; subTitle?: React.ReactNode; style?: React.CSSProperties; children?: React.ReactNode; stepNumber?: any; active?: boolean; onCancelLoading?: any; onContinueLoading?: any; loading?: boolean; icon?: any; } export default class NeoStep extends Component { constructor(props: any); state: { loading: boolean; }; classes: string; render(): React.JSX.Element; }