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<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<BookmarkData>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
