import type GraphDataModelOperationResult from "./GraphDataModelOperationResult.js";
import type { GraphDataModelOperationResultProperties } from "./GraphDataModelOperationResult.js";

export interface GraphUpdatePropertyResultProperties extends GraphDataModelOperationResultProperties {}

/**
 * Result returned after [updating a graph property](https://developers.arcgis.com/javascript/latest/references/core/rest/knowledgeGraphService/#executeUpdateGraphProperty) on an entity type or relationship type in a knowledge graph data model.
 *
 * @since 4.33
 */
export default class GraphUpdatePropertyResult extends GraphDataModelOperationResult {
  constructor(properties?: GraphUpdatePropertyResultProperties);
}