import { immerable } from 'immer'; import { Edge } from '../../entities'; import type { AbstractEdge } from '../../types'; export declare class NormalGraphEdge extends Edge implements AbstractEdge { [immerable]: boolean; /** * 获取边的路径 * * @returns 边路径 */ getPath: () => { d: string; textPoint: { x: any; y: any; }; textTransform: string; }; } //# sourceMappingURL=normal-graph-edge.d.ts.map