import React from 'react'; import { type ViewProps, StatusBarProps } from 'react-native'; type Props = StatusBarProps & { viewProps?: ViewProps; topPadding?: number; themeScheme?: "light" | "dark"; translucent?: boolean; }; declare const Statusbar: ({ viewProps, topPadding, themeScheme, translucent, ...otherProps }: Props) => React.JSX.Element; export default Statusbar; export declare const StatusBarHeight: () => React.JSX.Element; //# sourceMappingURL=StatusBar.d.ts.map