import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapBookmarksOutlineLevelData: {}; /** * Container class for individual bookmarks outline level. */ export declare class BookmarksOutlineLevelData implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the bookmark's level. */ bookmarksOutlineLevel: number; /** * Gets or sets the bookmark's name. */ name: string; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }