export interface Notification {
    title: string;
    text: string;
    type: 'alert' | 'success';
}
