export enum ModalStep {
  /** User selects plan details or options before confirming */
  Select = 'select',
  /** User confirms the subscription change with final details */
  Confirm = 'confirm',
  /** Final confirmation for users with accepted coupons */
  CouponConfirm = 'couponConfirm',
  /** Change has been completed or scheduled successfully */
  Scheduled = 'scheduled',
  /** An error occurred during the subscription change process */
  Error = 'error',
  /** Shows final result after payment/processing completion */
  Completing = 'completing',
  /** Operation completed successfully (used for renewals and upgrades) */
  Success = 'success',
  /** Display panic offer */
  Offer = 'offer',
  /** Confirm offer */
  ConfirmOffer = 'confirmOffer',
  /** Survey for other feedback */
  SurveyOther = 'surveyOther',
  /** Survey for cancellation reasons */
  CancelSurvey = 'cancelSurvey',
}
