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<AttributeInfo>;
    /**
     * 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<Bookmark>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
