export type IGlobalNotificationType = "error" | "info" | "success";
export interface IGlobalNotification {
    key: string;
    type: IGlobalNotificationType;
    message: string;
    duration?: number;
}
