import type { ComponentModelProperties } from "./ComponentModelProperties.js";
/**
 * Configuration for an image component.
 */
export interface ImageModelProperties extends ComponentModelProperties {
    /**
     * The image source.
     */
    src?: string;
    /**
     * The alternative text for the image.
     */
    alt: string;
}
