import type { FC } from 'react'; interface FallbackImgProps { /** Image source */ src: string; /** Alt text for image */ alt?: string; /** ClassName applied to image */ className?: string; /** Fallback */ fallback?: React.ReactNode; } declare const FallbackImg: FC; export default FallbackImg;