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