import { ComponentPropsWithoutRef } from 'react';
import StepLink from './StepLink';
declare type Props = Omit<ComponentPropsWithoutRef<typeof StepLink>, 'href'> & {
    href?: string;
    mode?: 'link' | 'active' | 'disabled';
};
declare const Step: ({ number, id, title, classModifier, href, onClick, mode, className, }: Props) => JSX.Element;
export default Step;
//# sourceMappingURL=Step.d.ts.map