import { IRenderer, ISpecification, IRenderable } from '../../api'; /** * Implementation of the 'italic' markup element. * An i HTML element is created, the attributes id and * text from the markup applied and the class * lto-italic is added to allow CSS manipulations. * * @see {@link IRenderable} */ export declare class Italic implements IRenderable { private readonly spec; constructor(message: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }