import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { ListLevel } from './listLevel'; export declare const importsMapListLevels: { LinkElement: typeof LinkElement; ListLevel: typeof ListLevel; }; /** * DTO container with a single document list. */ export declare class ListLevels extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of list levels for this list. * Use this property to access and modify formatting individual to each level of the list. */ listLevel: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }