import { NotificationSettingsScopeUnion, ScopeNotificationSettings } from '@airgram-dev/core'; /** Notification settings for some type of chats were updated */ export declare class UpdateScopeNotificationSettingsBaseModel { _: 'updateScopeNotificationSettings'; /** Types of chats for which notification settings were updated */ scope: NotificationSettingsScopeUnion; /** The new notification settings */ notificationSettings: ScopeNotificationSettings; }