type ObjectFit = 'cover' | 'contain' | 'fill' | 'none'; type LoadingStrategy = 'lazy' | 'eager'; interface ImageProps { src: string; alt: string; fallbackSrc?: string; aspectRatio?: string; rounded?: boolean | 'sm' | 'md' | 'lg' | 'xl' | 'full'; objectFit?: ObjectFit; loading?: LoadingStrategy; width?: number | string; height?: number | string; class?: string; } declare const Image: import("svelte").Component; type Image = ReturnType; export default Image;