import { XcodeProject } from '@expo/config-plugins'; export interface ConfigureTargetOptions { targetName: string; targetUuid: string; productFile: { fileRef: string; }; xCConfigurationList: { uuid: string; }; } /** * Configures the widget extension target in the Xcode project. * * This: * - Adds the target to PBXNativeTarget section * - Adds the target to PBXProject section * - Adds a dependency from the main app to the widget extension */ export declare function configureTarget(xcodeProject: XcodeProject, options: ConfigureTargetOptions): { uuid: string; pbxNativeTarget: { isa: string; name: string; productName: string; productReference: string; productType: string; buildConfigurationList: string; buildPhases: never[]; buildRules: never[]; dependencies: never[]; }; };