import { XmlComponent, IXmlableObject } from "../../file/xml-components"; import { WidthType } from "."; export declare type WidthTypes = "dxa" | "pct" | "nil" | "auto"; export declare class TableProperties extends XmlComponent { private tableCellMargin; constructor(); setWidth(type: WidthTypes, w: number | string): TableProperties; fixedWidthLayout(): TableProperties; setStyle(style: string): this; setTableIndent(indent: number): this; readonly cellMargin: TableCellMargin; } export declare class TableCellMargin extends XmlComponent { constructor(); prepForXml(): IXmlableObject; addTopMargin(value: number, type?: WidthType): void; addLeftMargin(value: number, type?: WidthType): void; addBottomMargin(value: number, type?: WidthType): void; addRightMargin(value: number, type?: WidthType): void; }