import type { ComponentProps, FC, PropsWithChildren, ReactNode } from "react"; export type StepPointProps = PropsWithChildren & { icon?: ReactNode; className?: string; completed?: boolean; }>; export declare const StepPoint: FC;