import { Graph } from '@antv/x6'; interface Shortcut { keys: string | string[]; handler: (graph: Graph, type?: any) => void; } export declare const shortcuts: { [key: string]: Shortcut; }; export {};