import { IRenderable, IRenderer, ISpecification } from "../../api"; /** * Implementation of the 'transition' type markup element. */ export declare class Transition implements IRenderable { private readonly spec; constructor(message: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }