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