interface Props { src: string; alt: string; class?: string; loading?: 'lazy' | 'eager'; decoding?: 'auto' | 'async' | 'sync'; width?: number | string; height?: number | string; decorative?: boolean; fallback?: import('svelte').Snippet; placeholder?: import('svelte').Snippet; onLoad?: () => void; onError?: () => void; } declare const Image: import("svelte").Component; type Image = ReturnType; export default Image;