export type Type = "error" | "info" | "success";
export interface Notification {
    key: string;
    type: Type;
    message: string;
    duration?: number;
}
export type State = Notification[];
