import '../../stencil.core';
import { EventEmitter } from '../../stencil.core';
export declare class Img {
private io?;
el: HTMLElement;
loadSrc?: string;
/**
* This attribute defines the alternative text describing the image.
* Users will see this text displayed if the image URL is wrong,
* the image is not in one of the supported formats, or if the image is not yet downloaded.
*/
alt?: string;
/**
* The image URL. This attribute is mandatory for the
element.
*/
src?: string;
srcChanged(): void;
/** Emitted when the img src is loaded */
ionImgDidLoad: EventEmitter;
componentDidLoad(): void;
private addIO;
private removeIO;
render(): JSX.Element;
}