1 #import <Foundation/Foundation.h>
2 #import "EXManagedAppSplashScreenConfiguration.h"
3 
4 @class EXManifestsManifest;
5 
6 NS_ASSUME_NONNULL_BEGIN
7 
8 /**
9  * Parses manifest and builds SplashScreenConfiguration.
10  */
11 @interface EXManagedAppSplashScreenConfigurationBuilder : NSObject
12 
13 + (EXManagedAppSplashScreenConfiguration *)parseManifest:(EXManifestsManifest *)manifest;
14 
15 @end
16 
17 NS_ASSUME_NONNULL_END
18