/// import React from 'react'; import { TextStyle, ViewStyle } from 'react-native'; export interface SectionInterface { allowFontScaling?: boolean; children?: React.ReactNode; footerComponent?: React.ReactNode; headerComponent?: React.ReactNode; footer?: string; footerTextColor?: TextStyle['color']; footerTextStyle?: TextStyle; header?: string; headerTextColor?: TextStyle['color']; headerTextStyle?: TextStyle; hideSeparator?: boolean; hideSurroundingSeparators?: boolean; roundedCorners?: boolean; sectionPaddingBottom?: ViewStyle['paddingBottom']; sectionPaddingTop?: ViewStyle['paddingTop']; sectionTintColor?: ViewStyle['backgroundColor']; separatorInsetLeft?: ViewStyle['marginLeft']; separatorInsetRight?: ViewStyle['marginRight']; separatorTintColor?: ViewStyle['backgroundColor']; withSafeAreaView?: boolean; } declare const Section: React.FC; export default Section;