import { FC, ReactType } from 'react'; export interface ProgressBarProps { title?: string; steps?: { id: string; title: string; isActive: boolean; Link: ReactType; LinkProps: unknown; }[]; } declare const ProgressBar: FC; export default ProgressBar;