import React from 'react'; declare type StepStatus = 'TODO' | 'INPROGRESS' | 'FAILED' | 'SUCCESS'; export interface MultiStepProgressIndicatorProps { progressMap: Map void; }>; className?: string; textClassName?: string; barWidth?: number; } export declare const MultiStepProgressIndicator: React.FC; export {};