import React, { FC } from "react"; import type { XHComponentCommonProps } from "../../../types"; export declare type StepsProps = { current?: number; direction?: "horizontal" | "vertical"; children?: React.ReactNode; style?: React.CSSProperties & { "--line-to-next-color"?: string; "--color-primary"?: string; }; dashed?: boolean; } & XHComponentCommonProps; declare const Steps: FC; export default Steps;