import { IRenderer, ISpecification, IRenderable, IStackeable } from '../../api'; /** * Implementation of the 'slotMachine' markup element. * A HTML div element where multiple 'reel' elements can be displayed. * The class lto-slotmachine is added to allow CSS manipulations. * * @see {@link IRenderable} * @see {@link IStackeable} */ export declare class SlotMachine implements IRenderable, IStackeable { private readonly spec; constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }