UNPKG

367 BTypeScriptView Raw
1/// <reference types="react" />
2import type { EdgeInsets } from 'react-native-safe-area-context';
3import type { Layout } from '../types';
4declare type Props = {
5 dark: boolean | undefined;
6 layout: Layout;
7 insets: EdgeInsets;
8 style: any;
9};
10export default function ModalStatusBarManager({ dark, layout, insets, style, }: Props): JSX.Element;
11export {};