import React from 'react'; export interface StepsItem { title?: React.ReactNode; description?: React.ReactNode; status?: 'wait' | 'process' | 'finish'; } export interface StepsProps { direction?: 'horizontal' | 'vertical'; items: StepsItem[]; current: number; status?: StepsItem['status']; className?: string; hasWhiteBg?: boolean; initial?: number; } export declare const Steps: React.FC; export default Steps;