import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { TableLink } from './tableLink'; export declare const importsMapTableLinkCollection: { LinkElement: typeof LinkElement; TableLink: typeof TableLink; }; /** * The collection of table's links. */ export declare class TableLinkCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of table's links. */ tableLinkList: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }