import React from 'react'; import { ViewStyle, TextStyle, StyleProp } from 'react-native'; import { SpacingProps } from '../../../theme'; export interface SectionProps extends SpacingProps { children: React.ReactNode; title?: string; subtitle?: string; style?: StyleProp; titleStyle?: StyleProp; subtitleStyle?: StyleProp; contentStyle?: StyleProp; spacing?: number; testID?: string; } export declare const Section: React.FC; //# sourceMappingURL=Section.d.ts.map