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<AttributeInfo>;
    /**
     * 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<Hyperlink>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
