1import { ExpoConfig } from '@expo/config-types'; 2import { XcodeProject } from 'xcode'; 3import { ConfigPlugin } from '../Plugin.types'; 4import { InfoPlist } from './IosConfig.types'; 5export declare const withDisplayName: ConfigPlugin<void>; 6export declare const withName: ConfigPlugin<void>; 7/** Set the PRODUCT_NAME variable in the xcproj file based on the app.json name property. */ 8export declare const withProductName: ConfigPlugin; 9export declare function getName(config: Pick<ExpoConfig, 'name'>): string | null; 10/** 11 * CFBundleDisplayName is used for most things: the name on the home screen, in 12 * notifications, and others. 13 */ 14export declare function setDisplayName(configOrName: Pick<ExpoConfig, 'name'> | string, { CFBundleDisplayName, ...infoPlist }: InfoPlist): InfoPlist; 15/** 16 * CFBundleName is recommended to be 16 chars or less and is used in lists, eg: 17 * sometimes on the App Store 18 */ 19export declare function setName(config: Pick<ExpoConfig, 'name'>, { CFBundleName, ...infoPlist }: InfoPlist): InfoPlist; 20export declare function setProductName(config: Pick<ExpoConfig, 'name'>, project: XcodeProject): XcodeProject; 21