import { ExpoConfig } from '../Config.types'; import { InfoPlist } from './IosConfig.types'; export declare function getCustomInfoPlistEntries(config: ExpoConfig): { [key: string]: any; }; export declare function setCustomInfoPlistEntries(config: ExpoConfig, infoPlist: InfoPlist): { CFBundleShortVersionString?: string | undefined; CFBundleVersion?: string | undefined; CFBundleDisplayName?: string | undefined; CFBundleName?: string | undefined; CFBundleURLTypes?: import("./IosConfig.types").URLScheme[] | undefined; ITSAppUsesNonExemptEncryption?: boolean | undefined; LSApplicationQueriesSchemes?: string[] | undefined; FacebookAppID?: string | undefined; FacebookDisplayName?: string | undefined; FacebookAutoInitEnabled?: boolean | undefined; FacebookAutoLogAppEventsEnabled?: boolean | undefined; FacebookAdvertiserIDCollectionEnabled?: boolean | undefined; UISupportedInterfaceOrientations?: import("./IosConfig.types").InterfaceOrientation[] | undefined; GMSApiKey?: string | undefined; };