///
interface Step {
Icon: () => JSX.Element;
title?: string;
}
interface StepInternal extends Step {
idx: number;
active: boolean;
passed: boolean;
last: boolean;
}
interface Props {
steps: Step[];
activeStep: number;
}
/**
*
* @param props
*
*/
declare const Step: ({ title, Icon, active, passed, last }: StepInternal) => JSX.Element;
declare const _default: ({ steps, activeStep }: Props) => JSX.Element;
export default _default;