import type { HookHub } from '@antv/xflow-hook'; import type { NsGraph } from '../../interface'; import type { IHooks } from '../../hooks/interface'; import type { IArgsBase } from '../../command/interface'; import { ICommandHandler } from '../../command/interface'; import type { Cell } from '@antv/x6'; declare type ICommand = ICommandHandler; export declare namespace NsGraphCopySelection { /** Command: 用于注册named factory */ const command: import("../../command/interface").IGraphCommand; /** hookName */ const hookKey = "graphCopySelection"; /** hook 参数类型 */ type IArgs = IArgsBase; /** hook handler 返回类型 */ interface IResult { err: null | string; } /** hooks 类型 */ interface ICmdHooks extends IHooks { graphCopySelection: HookHub; } } export declare class GraphCopySelectionCommand implements ICommand { /** api */ contextProvider: ICommand['contextProvider']; parseCells: (cells: Cell[]) => { nodes: NsGraph.INodeConfig[]; edges: NsGraph.IEdgeConfig[]; }; /** 执行Cmd */ execute: () => Promise; /** undo cmd */ undo: () => Promise; /** redo cmd */ redo: () => Promise; isUndoable(): boolean; } export {};