import Wizard from "../util/wizard"; import { IPackageJson } from "./common"; declare const tryToPatchAppDelegate: (iOSProjectName: string) => Promise; /** * Getting iOS project name either from user's input ('CustomBeautifulApp') or from package.json ({ name: 'custom.beautiful.app' }) */ declare const getIOSProjectName: (wizard: Wizard) => Promise; declare const iosInitializeEmbrace: { name: string; run: (wizard: Wizard) => Promise; docURL: string; }; declare const patchPodFileWithKSCrash: () => Promise; declare const patchPodfile: (json: IPackageJson) => Promise | undefined; declare const iOSPodfilePatch: { name: string; run: (wizard: Wizard) => Promise; docURL: string; }; declare const iosPodfileKSCrashPatch: { name: string; run: (_wizard: Wizard) => Promise; docURL: string; }; declare const patchXcodeBundlePhase: { name: string; run: (wizard: Wizard) => Promise; docURL: string; }; declare const addUploadBuildPhase: { name: string; run: (wizard: Wizard) => Promise; docURL: string; }; declare const addEmbraceInitializerSwift: { name: string; run: (wizard: Wizard) => Promise; docURL: string; }; export { tryToPatchAppDelegate, patchPodfile, getIOSProjectName, patchPodFileWithKSCrash, iosInitializeEmbrace, iOSPodfilePatch, iosPodfileKSCrashPatch, patchXcodeBundlePhase, addUploadBuildPhase, addEmbraceInitializerSwift, };