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