import { JSX } from 'react'; type SafeImageLoadingProps = { src?: string; fallback?: JSX.Element | null; width?: string; height?: string; loadingDelay?: number; }; export { SafeImageLoadingProps };