import type { HTMLImgAttributes } from "svelte/elements"; export interface ImageProps extends Omit { imageId: string; width?: number | "original"; height?: number | "original"; placeholder?: string; }