/** * BaseModal Component * Generic fullscreen modal with responsive design * Used across all modals in the app for consistency */ import React from 'react'; import { ViewStyle } from 'react-native'; export interface BaseModalProps { visible: boolean; onClose: () => void; children: React.ReactNode; dismissOnBackdrop?: boolean; contentStyle?: ViewStyle; testID?: string; title?: string; subtitle?: string; } export declare const BaseModal: React.FC;