import { IRenderer, ISpecification, IRenderable } from '../../api'; /** * Implementation of the 'image' markup element. * An img HTML element is created and the given * attributes src, alt, with and height are taken over. * The class lto-image is added to allow CSS manipulations. * * @see {@link IRenderable} */ export declare class Image implements IRenderable { private readonly spec; constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }