export declare type URLScheme = { CFBundleURLName?: string; CFBundleURLSchemes: string[]; }; export declare type InterfaceOrientation = 'UIInterfaceOrientationPortrait' | 'UIInterfaceOrientationPortraitUpsideDown' | 'UIInterfaceOrientationLandscapeLeft' | 'UIInterfaceOrientationLandscapeRight'; export declare type InfoPlist = { CFBundleShortVersionString?: string; CFBundleVersion?: string; CFBundleDisplayName?: string; CFBundleName?: string; CFBundleURLTypes?: Array; ITSAppUsesNonExemptEncryption?: boolean; LSApplicationQueriesSchemes?: Array; FacebookAppID?: string; FacebookDisplayName?: string; FacebookAutoInitEnabled?: boolean; FacebookAutoLogAppEventsEnabled?: boolean; FacebookAdvertiserIDCollectionEnabled?: boolean; UISupportedInterfaceOrientations?: Array; GMSApiKey?: string; };