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<AttributeInfo>;
    /**
     * 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<ListLevel>;
    constructor(init?: Partial<ListLevels>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
