export type DataImageFit = "cover" | "contain"; import type { HTMLImgAttributes } from "svelte/elements"; type DataImageProps = Omit & { /** Image URL (required). */ src: string; /** Alternative text (required for a11y; pass "" only for purely decorative images). */ alt: string; /** Intrinsic / box width (number → px, or any CSS length). */ width?: number | string; /** Intrinsic / box height (number → px, or any CSS length). */ height?: number | string; /** `object-fit` behaviour inside its box. Default `cover`. */ fit?: DataImageFit; /** Border radius (CSS length). */ radius?: number | string; class?: string; }; declare const DataImage: import("svelte").Component; type DataImage = ReturnType; export default DataImage; //# sourceMappingURL=DataImage.svelte.d.ts.map