import React, { type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; interface Props { children: ReactNode; styles?: StyleProp; flex?: number; } declare const Section: (props: Props) => React.JSX.Element; export default Section; //# sourceMappingURL=Section.d.ts.map