import { IRenderer, ISpecification, IRenderable } from '../../api'; /** * Implementation of the 'spinner' markup element. * A HTML input element where attribute type is set to number. * The class lto-spinner is added to allow CSS manipulations. * * @see {@link IRenderable} */ export declare class Spinner implements IRenderable { private readonly spec; constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }