import { ExpoConfig } from '@expo/config-types'; import { ConfigPlugin } from '../Plugin.types'; import { ResourceXML } from './Resources'; export declare const withStatusBar: ConfigPlugin; export declare function setStatusBarColors(config: Pick, colors: ResourceXML): ResourceXML; export declare function setStatusBarStyles(config: Pick, styles: ResourceXML): ResourceXML; export declare function getStatusBarColor(config: Pick): string | undefined; /** * Specifies whether the status bar should be "translucent". When true, the status bar is drawn with `position: absolute` and a gray underlay, when false `position: relative` (pushes content down). * * @default false * @param config * @returns */ export declare function getStatusBarTranslucent(config: Pick): boolean; export declare function getStatusBarStyle(config: Pick): "light-content" | "dark-content";