import { XcodeProject } from '@expo/config-plugins'; export interface AddNativeTargetOptions { targetName: string; targetUuid: string; productFile: { fileRef: string; }; xCConfigurationList: { uuid: string; }; } /** * Adds the widget extension target to the PBXNativeTarget section. */ export declare function addToPbxNativeTargetSection(xcodeProject: XcodeProject, options: AddNativeTargetOptions): { uuid: string; pbxNativeTarget: { isa: string; name: string; productName: string; productReference: string; productType: string; buildConfigurationList: string; buildPhases: never[]; buildRules: never[]; dependencies: never[]; }; };