/** * This intends to wrap every screen in ChainIT * so that every screen contains a SafeAreaView and other screen-global components. * For example, we have an environment indicator above every screen for debugging / testing purposes (disabled in production). */ /// export interface AppLayoutProps { children: JSX.Element | JSX.Element[]; style?: any; } export declare function VersionHeader(): JSX.Element; export declare const APP_LAYOUT_SAFE_AREA_STYLE: import("twrnc/dist/esm/types").Style; export declare const AppLayout: ({ children, style }: AppLayoutProps) => JSX.Element; //# sourceMappingURL=AppLayout.d.ts.map