export interface SetupConfigs { mode?: 'real' | 'simulator' | 'both'; } export interface Options { [key: string]: string | string[] | boolean; } export interface AvailableOptions { [key: string]: { alias: string[], description: string; } } export interface IosSetupResult { real: boolean; simulator: boolean; }