import { MessageToastType } from "./MessageToastType"; export interface IMessageToastParams { type: MessageToastType; text: string; uniqueId: string; emergencyLink: string; onCancel: () => void; onShowMore: () => void; }