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