import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; import { FileLink } from './fileLink'; export declare const importsMapSaveResult: { FileLink: typeof FileLink; }; /** * Result of saving. */ export declare class SaveResult implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the link to destination document. */ destDocument: FileLink; /** * Gets or sets the link to source document. */ sourceDocument: FileLink; /** * Gets or sets the list of links to additional items (css, images etc). */ additionalItems: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }