import type { ViewStyle } from 'react-native'; import type { FC } from 'react'; export interface RootComponentProps { scroll?: boolean; safeArea?: boolean; contentContainerStyle?: ViewStyle; } export declare const RootComponent: FC; export default RootComponent;