import { AssistantUserJourneys } from "../common/AssistantUserJourneys"; declare enum PromotionsAppStates { UNSUPPORTED = "unsupported", VIEW_PROMOTIONS = "view_promotions" } declare enum PromotionsConditions { SUCCESS = "success", FAILURE = "failure_generic" } declare class PromotionsUserJourney { AppStates: typeof PromotionsAppStates; AppStateConditions: typeof PromotionsConditions; static assistantUserJourney: AssistantUserJourneys; mAppState: null | PromotionsAppStates; mAppStateCondition: null | PromotionsConditions; constructor(); setViewSuccess(): void; setAppFailure(): void; } export { PromotionsUserJourney, PromotionsAppStates, PromotionsConditions };