import { AttributeInfo } from '../internal/attributeInfo'; import { ModificationOperationResult } from './modificationOperationResult'; import { WordsResponse } from './wordsResponse'; export declare const importsMapRevisionsModificationResponse: { ModificationOperationResult: typeof ModificationOperationResult; WordsResponse: typeof WordsResponse; }; /** * The REST response with a result of the modification operations for the revisions collection (now these are acceptAll and rejectAll). */ export declare class RevisionsModificationResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the result of the modification operations for the revisions collection. */ result: ModificationOperationResult; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }