import { AttributeInfo } from '../internal/attributeInfo'; import { Bookmark } from './bookmark'; import { LinkElement } from './linkElement'; export declare const importsMapBookmarks: { Bookmark: typeof Bookmark; LinkElement: typeof LinkElement; }; /** * Represents an array of bookmarks. */ export declare class Bookmarks extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the array of bookmarks. */ bookmarkList: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }