/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { ImgHTMLAttributes } from 'react'; import type { AspectRatioProps } from '../common/types'; export type ImageProps = { /** A textual description of the content of the image. */ alt: string; } & AspectRatioProps & Omit, 'children'>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-media-image--docs Image docs at Amsterdam Design System} */ export declare const Image: import("react").ForwardRefExoticComponent<{ /** A textual description of the content of the image. */ alt: string; } & AspectRatioProps & Omit, "children"> & import("react").RefAttributes>;