export interface InitNseOptions { iosPath?: string; targetName: string; bundleSuffix: string; force: boolean; dryRun: boolean; } /** * Orchestrates the init-nse command: detect project → check existing → * backup → write templates → patch Podfile → patch .pbxproj → summary. */ export declare function initNse(opts: InitNseOptions): Promise;