import { AssistantUserJourneys } from "../common/AssistantUserJourneys"; import { SmallTalkType } from "./smallTalkInfo"; declare enum SmallTalkAppStates { GREETING = "greeting", UNSUPPORTED = "unsupported", FAREWELL = "farewell" } declare enum SmallTalkConditions { CONTINUE = "continue", COMPLETE = "complete" } declare class SmallTalkUserJourney { AppStates: typeof SmallTalkAppStates; AppStateConditions: typeof SmallTalkConditions; SmallTalkType: typeof SmallTalkType; static assistantUserJourney: AssistantUserJourneys; mAppState: null | SmallTalkAppStates; mAppStateCondition: null | SmallTalkConditions; constructor(); setComplete: () => void; setContinue: () => void; } export { SmallTalkUserJourney, SmallTalkAppStates, SmallTalkConditions };