import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { AccessibilityPropsType } from '../../../utils/accessibility-helper'; export interface ContainerWithGapProps { viewStyle?: StyleProp; horizontal?: boolean; gap?: number; outerMargin?: number; useChildGap?: boolean; span?: 1 | 2; children?: ReactNode; title?: string; accessibilityTitle?: AccessibilityPropsType; } export interface GapWrapProps { gap: number; horizontal?: boolean; children?: ReactNode; }