import type { ComponentProps, FC, PropsWithChildren } from "react"; export type StepItemProps = PropsWithChildren & { className?: string; completed?: boolean; active?: boolean; }>; export declare const StepItem: FC;