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