import type { HookHub } from '@antv/xflow-hook'; import type { IContext, IArgsBase } from '../../command/interface'; import { ICommandHandler } from '../../command/interface'; import type { IHooks } from '../../hooks/interface'; declare type ICommand = ICommandHandler; export declare namespace NsHighlightEdge { const command: import("../../command/interface").IGraphCommand; const hookKey = "highlightEdge"; interface IArgs extends IArgsBase { /** 边唯一id */ edgeId: string; /** 边高亮颜色 */ strokeColor: string; /** 边高亮宽度 */ strokeWidth?: number; } interface IResult { } interface ICmdHooks extends IHooks { highlightEdge: HookHub; } } export declare class HighlightEdgeCommand implements ICommand { contextProvider: ICommand['contextProvider']; ctx: IContext; init(): void; execute: () => Promise; undo: () => Promise; redo: () => Promise; isUndoable(): boolean; } export {};