import { ReactNode } from 'react'; export interface Props { activeStep?: string; children?: ReactNode; } export declare function ProgressTracker({ activeStep, children }: Props): JSX.Element;