import { FC } from 'react'; type SteppedProgressBarView = 'positive' | 'negative' | 'attention' | 'link' | 'tertiary' | 'secondary' | 'primary' | 'accent'; type StepBarProps = { isDone: boolean; view?: SteppedProgressBarView; }; declare const StepBar: FC; export { SteppedProgressBarView, StepBar };