import React from 'react'; import type { StatusBarProps as RNStatusBarProps } from 'react-native'; import type { Theme } from '../core/theme'; export type StatusBarProps = RNStatusBarProps & { theme?: Theme; }; /** * If bar-style is 'dark-content' that means app has a light background with dark text and icons. * If bar-style is 'light-content' that means app has a dark background with light text and icons. */ export declare const useStatusBarStyle: ({ theme, }?: StatusBarProps | undefined) => 'light-content' | 'dark-content'; export declare const useStatusBarUpdater: ({ theme }?: StatusBarProps | undefined) => () => void; export declare const StatusBar: React.MemoExoticComponent< ({ animated, backgroundColor, barStyle, hidden, networkActivityIndicatorVisible, theme, showHideTransition, translucent, }: StatusBarProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=StatusBar.d.ts.map