import type { StyleXStyles } from '@stylexjs/stylex'; export type Action = { title: string; step: number; }; export interface IMultiStep { steps: Action[]; currentStep: number; color?: 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'quinary'; size?: 'small' | 'medium' | 'large'; style?: StyleXStyles<{ margin?: string; }>; }