export type StepperActionType = "decrease" | "increase"; export type StepperShape = "square" | "rounded" | "circular" | "round"; export type StepperThemeVars = { stepperActiveBackgroundColor?: string; stepperBackgroundColor?: string; stepperInputWidth?: string; stepperInputHeight?: string; stepperInputMargin?: string; stepperInputFontSize?: string; stepperInputLineHeight?: string; stepperInputColor?: string; stepperInputBackgroundColor?: string; stepperInputDisabledColor?: string; stepperInputDisabledBackgroundColor?: string; stepperButtonIconColor?: string; stepperButtonDisabledColor?: string; stepperButtonDisabledBackgroundColor?: string; stepperRoundedButtonBorderRadius?: string; stepperRoundedDecreaseButtonBorderRadius?: string; stepperRoundedIncreaseButtonBorderRadius?: string; stepperCircularDecreaseButtonColor?: string; stepperCircularDecreaseButtonBackgroundColor?: string; stepperCircularDecreaseButtonBorderColor?: string; stepperCircularIncreaseButtonColor?: string; stepperCircularIncreaseButtonBackgroundColor?: string; };