import { IRenderer, ISpecification, IRenderable, IStackeable } from '../../api'; /** * Implementation of the 'items' markup element. * An ol or ul HTML element is created depending if * the items of the item section requires ordering. * The attribute id of the markup is applied and the * class lto-items is added to allow CSS manipulations. * * @see {@link IRenderable} * @see {@link IStackeable} * @see {@link Item} */ export declare class Items implements IRenderable, IStackeable { spec: ISpecification; constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }