import type { HTMLImgAttributes } from 'svelte/elements'; type Props = { src: string; alt: string; fallback?: string; } & HTMLImgAttributes; declare const SImage: import("svelte").Component; type SImage = ReturnType; export default SImage;