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