import React from 'react'; import { Status } from 'rc-steps/lib/interface'; import { IGlyph } from '../icon'; export interface StepProps { title: string; icon?: IGlyph; disabled?: boolean; status?: Status; } export interface StepsProps { current: number; hasSurpassed?: boolean; hasError?: boolean; onChange: (index: number) => void; steps: StepProps[]; getStatusIcon?: (index: number, status: Status) => IGlyph; } export declare const Steps: React.FC;