import type { IChannel } from "./channel/Channel"; import type { CalculateSASStage } from "./stages/CalculateSASStage"; import type { SelectVerificationMethodStage } from "./stages/SelectVerificationMethodStage"; export type SASProgressEvents = { SelectVerificationStage: SelectVerificationMethodStage; EmojiGenerated: CalculateSASStage; VerificationCompleted: string; VerificationCancelled: IChannel["cancellation"]; };