/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { ImgHTMLAttributes } from 'react';
import { AspectRatioProps } from '../common/types';
export type ImageProps = {
    /**
     * A textual description of the content of the image.
     */
    alt: string;
} & AspectRatioProps & ImgHTMLAttributes<HTMLImageElement>;
export declare const Image: import("react").ForwardRefExoticComponent<{
    /**
     * A textual description of the content of the image.
     */
    alt: string;
} & AspectRatioProps & ImgHTMLAttributes<HTMLImageElement> & import("react").RefAttributes<HTMLImageElement>>;
