/** The name of the notification service */
export declare const NS_TARGET_NAME = "IterableExpoRichPush";
/** The filename of the notification service's main file */
export declare const NS_MAIN_FILE_NAME = "NotificationService.swift";
/** The filename of the notification service's Info.plist */
export declare const NS_PLIST_FILE_NAME = "IterableExpoRichPush-Info.plist";
/** The filename of the notification service's entitlements */
export declare const NS_ENTITLEMENTS_FILE_NAME = "IterableExpoRichPush.entitlements";
/** The files that are added to the notification service */
export declare const NS_FILES: string[];
/**
* The Iterable pod that is require for the notification service to process
* Iterable push notifications.
*/
export declare const NS_POD = "Iterable-iOS-AppExtensions";
/** The content of the notification service's main file */
export declare const NS_MAIN_FILE_CONTENT = "import UserNotifications\nimport IterableAppExtensions\n\nclass NotificationService: ITBNotificationServiceExtension {}";
/** The content of the notification service's Info.plist */
export declare const NS_PLIST_CONTENT = "\n\n\n\n\tCFBundleDevelopmentRegion\n\t$(DEVELOPMENT_LANGUAGE)\n\tCFBundleDisplayName\n\tIterableExpoRichPush\n\tCFBundleExecutable\n\t$(EXECUTABLE_NAME)\n\tCFBundleIdentifier\n\t$(PRODUCT_BUNDLE_IDENTIFIER)\n\tCFBundleInfoDictionaryVersion\n\t6.0\n\tCFBundleName\n\t$(PRODUCT_NAME)\n\tCFBundleShortVersionString\n\t1.0.0\n\tCFBundleVersion\n\t1\n\tNSExtension\n\t\n\t\tNSExtensionPointIdentifier\n\t\tcom.apple.usernotifications.service\n\t\tNSExtensionPrincipalClass\n\t\t$(PRODUCT_MODULE_NAME).NotificationService\n\t\n\n";
/** The content of the notification service's entitlements */
export declare const NS_ENTITLEMENTS_CONTENT = "\n\n\n\n\tcom.apple.security.app-sandbox\n\t\n\tcom.apple.security.network.client\n\t\n\n";