/** * @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. */ readonly alt: string; } & Readonly & Readonly, 'children'>>; /** * Displays an image. * * @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. */ readonly alt: string; } & Readonly & Readonly, "children">> & import("react").RefAttributes>;