import type { IOSProjectConfig } from '@react-native-community/cli-types'; import type { BuildFlags } from '../commands/build/buildOptions.js'; import type { RunFlags } from '../commands/run/runOptions.js'; import type { ApplePlatform, ProjectConfig } from '../types/index.js'; export declare function buildApp({ args, projectConfig, pluginConfig, platformName, udid, projectRoot, deviceName, reactNativePath, binaryPath, brownfield, }: { args: RunFlags | BuildFlags; projectConfig: ProjectConfig; pluginConfig?: IOSProjectConfig; platformName: ApplePlatform; udid?: string; deviceName?: string; projectRoot: string; reactNativePath: string; binaryPath?: string; brownfield?: boolean; }): Promise<{ appPath: string; infoPlistPath: string; scheme: string | undefined; xcodeProject: import("../types/index.js").XcodeProjectInfo; sourceDir: string; }>;