import { User } from '@airgram-dev/core'; /** * Some data of a user has changed. This update is guaranteed to come before the user * identifier is returned to the client */ export declare class UpdateUserBaseModel { _: 'updateUser'; /** New data about the user */ user: User; }