import React from "react"; import type { ProgressBarUnsafeStyle } from "./types"; interface ProgressBarSteppedProps { readonly total: number; readonly current: number; readonly color?: string; readonly loading?: boolean; readonly inProgress?: number; readonly UNSAFE_style?: ProgressBarUnsafeStyle; } export declare function ProgressBarStepped({ total, current, color, loading, inProgress, UNSAFE_style, }: ProgressBarSteppedProps): React.JSX.Element; export {};