import type { BrFeedbackState } from '../global.types'; export type StepLabelPosition = 'top' | 'right' | 'bottom' | 'left'; export type StepContentType = 'default' | 'br-icon' | 'no-content' | 'slotted'; export type StepMode = 'controller' | 'step'; export type StepVerticalContentPlacement = 'between' | 'side'; export type StepValidationStatus = BrFeedbackState; export type StepChangeDetail = { activeStep: number; };