/** * Orientation options for the progress tracker component. */ export type VegaProgressTrackerDirectionType = 'vertical' | 'horizontal' | 'horizontal-compact'; export type VegaProgressTrackerStepItem = { title: string; clickable?: boolean; };