1import { XcodeProject } from 'xcode'; 2/** 3 * Find the Info.plist path linked to a specific build configuration. 4 * 5 * @param projectRoot 6 * @param param1 7 * @returns 8 */ 9export declare function getInfoPlistPathFromPbxproj(projectRootOrProject: string | XcodeProject, { targetName, buildConfiguration, }?: { 10 targetName?: string; 11 buildConfiguration?: string | 'Release' | 'Debug'; 12}): string | null; 13