import { AttributeInfo } from '../internal/attributeInfo'; import { Border } from './border'; import { LinkElement } from './linkElement'; export declare const importsMapBordersCollection: { Border: typeof Border; LinkElement: typeof LinkElement; }; /** * The collection of borders. */ export declare class BordersCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of comments. */ list: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }