/** * iOS-related constants for the Voltra plugin */ export declare const IOS: { /** Minimum iOS deployment target version */ readonly DEPLOYMENT_TARGET: "17.0"; /** Swift language version */ readonly SWIFT_VERSION: "5.0"; /** Target device families (1 = iPhone, 2 = iPad) */ readonly DEVICE_FAMILY: "1,2"; /** Last Swift migration version for Xcode */ readonly LAST_SWIFT_MIGRATION: 1250; };