import { AbstractImage } from './AbstractImage.ts'; /** * @summary An image component. * @attr {string} src - The URL of the image. * @attr {string} alt - The alternative text for the image. * @attr {string} loading - The loading strategy for the image ('lazy' or 'eager'). */ export declare class Image extends AbstractImage { static nativeName: string; constructor(); }