import React from 'react'; /** * * A component to display a fallback component in case no image is available. * * @example * * import ImageWithFallback from "@bigbinary/neeto-molecules/ImageWithFallback"; * * const App = () => ( * * ); * @endexample */ declare const ImageWithFallback: React.FC<{ src: string; fallback?: React.ReactNode; }>; export { ImageWithFallback as default };