export default ImageView;
declare class ImageView extends View<HTMLElement> {
    /**
     *
     * @param {String|ObservedString} url
     * @param {String[]} classList
     * @param {*} [attributes]
     */
    constructor(url: string | ObservedString, { classList, attributes }?: string[]);
    el: HTMLImageElement;
    destroy(): void;
    /**
     *
     * @param {number} x
     * @param {number} y
     * @private
     */
    private __setSize;
    /**
     *
     * @param {string} url
     * @private
     */
    private __setSource;
}
import View from "../../View.js";
//# sourceMappingURL=ImageView.d.ts.map