import type { PropsFor } from "../../types.js"; export type StepBarItemProps = PropsFor<"div", { /** Highlight current step (only use if not wrapped in a link, otherwise use 'active' class on the link instead) */ active?: boolean; }>; declare const StepBarItem: import("react").ForwardRefExoticComponent>; export default StepBarItem;