import { IRenderable } from '../../api'; /** * Implementation of the 'icon' markup element. * A div HTML element is created and the class * lto-icon is added to allow CSS manipulations. * * @see {@link IRenderable} */ export declare class Icon implements IRenderable { position: string; constructor(position: string); render(): HTMLDivElement; }