import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapBookmarkData: {}; /** * DTO for bookmark updating. */ export declare class BookmarkData implements ModelInterface { /** * 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; }