/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { EditOperation, EditOperationContext, EditSpec, EditableEdgeSpec, GraphIdentifier, InspectableGraph, SingleEditResult } from "@breadboard-ai/types"; export declare class ChangeEdge implements EditOperation { can(from: EditableEdgeSpec, to: EditableEdgeSpec, inspector: InspectableGraph, graphId: GraphIdentifier): Promise; do(spec: EditSpec, context: EditOperationContext): Promise; } //# sourceMappingURL=change-edge.d.ts.map