import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { ListInfo } from './listInfo'; export declare const importsMapLists: { LinkElement: typeof LinkElement; ListInfo: typeof ListInfo; }; /** * DTO container with an array of document lists. */ export declare class Lists extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the array of document lists. */ listInfo: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }