import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; export declare const importsMapBookmark: { LinkElement: typeof LinkElement; }; /** * Represents a single bookmark. */ export declare class Bookmark extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the name of the bookmark. */ name: string; /** * Gets or sets text, enclosed in the bookmark. */ text: string; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }