import type { PluginOptions, ResolveConfig } from '../../types/config.ts'; import type { ExpoConfig } from './types.ts'; export declare const getConfig: (localConfig: ExpoConfig, options: PluginOptions) => { 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])[]; }; export declare const getDependencies: ResolveConfig;