import { IRenderer, ISpecification, IRenderable, IStackeable } from '../../../api'; /** * Implementation of the 'tr' markup element. * A tr HTML element is created and the class * lto-row is added to allow CSS manipulations. * * @see {@link IRenderable} * @see {@link IStackeable} * @see {@link Table} * @see {@link Col} */ export declare class Row implements IRenderable, IStackeable { spec: ISpecification; constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }