import { type FC } from 'react';
import { type Stage } from '../types';
/**
 * __Progress tracker link__
 */
declare const Link: FC<Stage & {
    testId?: string;
}>;
export default Link;
