import { AttributeInfo } from '../internal/attributeInfo'; import { Hyperlink } from './hyperlink'; import { LinkElement } from './linkElement'; export declare const importsMapHyperlinks: { Hyperlink: typeof Hyperlink; LinkElement: typeof LinkElement; }; /** * Collection of Hyperlink. */ export declare class Hyperlinks extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the array of Hyperlink. */ hyperlinkList: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }