export interface Step { label: number; text: string; isActive: boolean; isChecked?: boolean; } export interface StepperProps { steps: Step[]; }