import type { Context } from '@rspack/core'; import type { Platform } from 'zephyr-agent'; export interface DelegateConfig { org: string; project: string; application?: undefined; target?: Platform; } export interface RepackEnv { context?: Context; reactNativePath?: string; mode?: 'development' | 'production' | undefined; devServer?: { port?: number; host?: string; https?: boolean; hmr?: boolean; }; platform: Platform | undefined; }