import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; export declare const importsMapHyperlink: { LinkElement: typeof LinkElement; }; /** * Hyperlink element. */ export declare class Hyperlink extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the hypelink's display text. */ displayText: string; /** * Gets or sets the value. */ value: string; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }