export { deriveNseBundleIdentifier as deriveBundleId } from './initNseCore'; export interface ProjectInfo { xcodeProjectPath: string; pbxprojPath: string; iosDir: string; parentBundleId: string | null; parentTargetName: string; } /** * Detects the iOS project directory and parses key metadata. */ export declare function detectIosProject(iosPath?: string): ProjectInfo;