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<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the array of Hyperlink.
     */
    hyperlinkList: Array<Hyperlink>;
    constructor(init?: Partial<Hyperlinks>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
