import { ConfigPlugin, InfoPlist } from '@expo/config-plugins'; import { ExpoConfig } from '@expo/config-types'; export declare const withIosRootViewBackgroundColor: ConfigPlugin; /** The template was changed in SDK 43 to move the background color logic to the `expo-system-ui` module */ export declare function shouldUseLegacyBehavior(config: Pick): boolean; export declare function warnSystemUIMissing(config: Pick): void; export declare function setRootViewBackgroundColor(config: Pick, infoPlist: InfoPlist): InfoPlist; export declare function getRootViewBackgroundColor(config: Pick): string | null;