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

export interface GraphDeletePropertyResultProperties extends GraphDataModelOperationResultProperties {}

/**
 * Result of [deleting graph properties](https://developers.arcgis.com/javascript/latest/references/core/rest/knowledgeGraphService/#executeDeleteGraphProperty) from an entity type or relationship type in a knowledge graph data model.
 *
 * @since 4.33
 */
export default class GraphDeletePropertyResult extends GraphDataModelOperationResult {
  constructor(properties?: GraphDeletePropertyResultProperties);
}