import { InfoPlist } from './IosConfig.types'; import { ExpoConfig } from '../Config.types'; export declare function getName(config: ExpoConfig): string | null; /** * CFBundleDisplayName is used for most things: the name on the home screen, in * notifications, and others. */ export declare function setDisplayName(configOrName: ExpoConfig | string, infoPlist: InfoPlist): InfoPlist; /** * CFBundleName is recommended to be 16 chars or less and is used in lists, eg: * sometimes on the App Store */ export declare function setName(config: ExpoConfig, infoPlist: InfoPlist): InfoPlist;