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<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the array of bookmarks.
     */
    bookmarkList: Array<Bookmark>;
    constructor(init?: Partial<Bookmarks>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
