import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; import { FileLink } from './fileLink'; export declare const importsMapModificationOperationResult: { FileLink: typeof FileLink; }; /** * result of the operation which modifies the original document and saves the result. */ export declare class ModificationOperationResult implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the link to the dest document (result of the modification operation). */ dest: FileLink; /** * Gets or sets the link to the source document (source for the modification operation). */ source: FileLink; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }