import React from 'react'; import { ColorValue } from 'react-native'; interface Props { closeModal: () => void; loadingColor?: ColorValue; visible: boolean; url: string; } declare const PromoModal: React.FC; export { PromoModal };