import { AbstractNotificationService } from './AbstractNotificationService'; import { INotification } from '../../interfaces/types'; export declare class GeneralNotificationService extends AbstractNotificationService { readonly notificationClass = "general"; readonly displayName: string; readonly icon: string; readonly iconColor: string; dispatchNotification(notification: Omit): Promise; }