type AppConfig = { platforms?: ('ios' | 'android' | 'web')[]; notification?: Record; updates?: { enabled?: boolean; }; backgroundColor?: string; userInterfaceStyle?: 'automatic' | 'light' | 'dark'; ios?: { backgroundColor?: string; }; android?: { userInterfaceStyle?: 'automatic' | 'light' | 'dark'; }; androidNavigationBar?: Record; plugins?: (string | [string, Record])[]; }; type Config = AppConfig | { expo: AppConfig; }; export type ExpoConfig = Config | (() => Config); export {};