import React, { ReactNode } from 'react'; import { ViewProps, ScrollView } from 'react-native'; type RootViewProps = ViewProps & { backgroundColor?: string; isLoader?: boolean; statusBarColor?: string; barStyle?: 'light-content' | 'dark-content'; edges?: Array<'top' | 'right' | 'bottom' | 'left'>; isScrollView?: boolean; scrollViewRef?: React.RefObject; topComponent?: ReactNode; bottomComponent?: ReactNode; showsVerticalScrollIndicator?: boolean; loadingComponent?: React.ReactNode; keyboardVerticalOffset?: number; }; declare const ZSContainer: ({ backgroundColor, isLoader, statusBarColor, barStyle, edges, isScrollView, scrollViewRef, topComponent, bottomComponent, showsVerticalScrollIndicator, loadingComponent, keyboardVerticalOffset, ...props }: RootViewProps) => React.JSX.Element; export default ZSContainer; //# sourceMappingURL=index.d.ts.map