/// import { TailwindFn } from 'twrnc'; declare type Props = { tw: TailwindFn; backgroundColor: string; barStyle: 'light-content' | 'dark-content'; top: number; }; declare const AppStatusBar: ({ tw, backgroundColor, barStyle, top }: Props) => JSX.Element; export default AppStatusBar;