import { ChatNotificationSettings } from '@airgram-dev/core'; /** Notification settings for a chat were changed */ export declare class UpdateChatNotificationSettingsBaseModel { _: 'updateChatNotificationSettings'; /** Chat identifier */ chatId: number; /** The new notification settings */ notificationSettings: ChatNotificationSettings; }