/** * The order of the chat in the chat list has changed. Instead of this update updateChatLastMessage, * updateChatIsPinned or updateChatDraftMessage might be sent */ export declare class UpdateChatOrderBaseModel { _: 'updateChatOrder'; /** Chat identifier */ chatId: number; /** New value of the order */ order: string; }