import { AttributeInfo } from '../internal/attributeInfo'; import { NodeLink } from './nodeLink'; import { TableCell } from './tableCell'; import { TableRowFormat } from './tableRowFormat'; export declare const importsMapTableRow: { NodeLink: typeof NodeLink; TableCell: typeof TableCell; TableRowFormat: typeof TableRowFormat; }; /** * DTO container with a table row element. */ export declare class TableRow extends NodeLink { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of rows. */ tableCellList: Array; /** * Gets or sets the formatting properties of a row. */ rowFormat: TableRowFormat; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }