import { NotificationTypeUnion } from '@airgram-dev/core'; /** Contains information about a notification */ export declare class NotificationBaseModel { _: 'notification'; /** Unique persistent identifier of this notification */ id: number; /** Notification date */ date: number; /** Notification type */ type: NotificationTypeUnion; }