import { IRenderable, IRenderer, ISpecification } from '../../api'; /** * Implementation of the 'label' markup element. * A div HTML element is crated and if the attributes * text and icon are set, they are applied. * The class lto-label is added to allow CSS manipulations. * * @see {@link IRenderable} * @see {@link Icon} */ export declare class Label implements IRenderable { static readonly TYPE = "label"; private readonly spec; constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }