export declare type SystemNotificationType = 'error' | 'info';
export interface SystemNotification {
    id: string;
    type: SystemNotificationType;
    title: string;
    message: string;
    isRead: boolean;
    numOccurances: any;
    updated: any;
    created: any;
}
