export type StepsDirection = "horizontal" | "vertical"; export type StepsThemeVars = { stepsBackgroundColor?: string; stepsHorizontalPadding?: string; stepsVerticalPadding?: string; stepColor?: string; stepActiveColor?: string; stepProcessColor?: string; stepFontSize?: string; stepIconFontSize?: string; stepLineBackgroundColor?: string; stepLineTransitionDuration?: string; stepCompletedColor?: string; stepCompletedLineBackgroundColor?: string; stepCircleSize?: string; stepCircleWidth?: string; stepCircleHeight?: string; stepCircleMargin?: string; stepCircleBackgroundColor?: string; stepCircleBorderRadius?: string; stepHorizontalTitleFontSize?: string; stepVerticalLineHeight?: string; stepVerticalPadding?: string; };