diff --git a/src/Umbraco.Core/Services/IPackagingService.cs b/src/Umbraco.Core/Services/IPackagingService.cs
index 478a90851b..c7e68e6eca 100644
--- a/src/Umbraco.Core/Services/IPackagingService.cs
+++ b/src/Umbraco.Core/Services/IPackagingService.cs
@@ -61,6 +61,15 @@ namespace Umbraco.Core.Services
/// An enumerable list of generated languages
IEnumerable ImportLanguages(XElement languageElementList, int userId = 0, bool raiseEvents = true);
+ ///
+ /// Imports and saves the 'Macros' part of a package xml as a list of
+ ///
+ /// Xml to import
+ /// Optional id of the User performing the operation
+ /// Optional parameter indicating whether or not to raise events
+ ///
+ IEnumerable ImportMacros(XElement element, int userId = 0, bool raiseEvents = true);
+
///
/// Imports and saves package xml as
///