import { ComponentPropsWithoutRef, ReactNode } from 'react'; import StepBase from './StepBase'; declare type CustomClickEvent = { href: string; number?: ReactNode; id: string; title: string; }; declare type Props = ComponentPropsWithoutRef & { href: string; number?: ReactNode; onClick?: (e: CustomClickEvent) => void; }; declare const StepLink: ({ id, href, number, title, className, onClick, ...otherProps }: Props) => JSX.Element; export default StepLink; //# sourceMappingURL=StepLink.d.ts.map