import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; import { FileLink } from './fileLink'; export declare const importsMapSplitDocumentResult: { FileLink: typeof FileLink; }; /** * Result of splitting document. */ export declare class SplitDocumentResult implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the link to the source document. */ sourceDocument: FileLink; /** * Gets or sets the link to the file archive with pages. */ zippedPages: FileLink; /** * Gets or sets the list of pages. */ pages: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }