import { NotificationGroup } from '@airgram-dev/core'; /** * Contains active notifications that was shown on previous application launches. This * update is sent only if a message database is used. In that case it comes once before * any updateNotification and updateNotificationGroup update */ export declare class UpdateActiveNotificationsBaseModel { _: 'updateActiveNotifications'; /** Lists of active notification groups */ groups: NotificationGroup[]; }