import React from 'react'; import { CrashRecord } from '../../types'; interface GlobalCrashScreenModalProps { visible: boolean; crash: CrashRecord | null; onDismiss: () => void; onOpenInspector: () => void; onRetry?: () => void; } export declare const GlobalCrashScreenModal: React.FC; export default GlobalCrashScreenModal;