export declare const SELECT_NODE = "SELECT_NODE"; export declare function selectNode(id: any): { type: string; payload: any; }; export declare const SELECT_EDGE = "SELECT_EDGE"; export declare function selectEdge(id: any): { type: string; payload: any; }; export declare const SELECT_PREVIOUS_TYPE = "SELECT_PREVIOUS_TYPE"; export declare function selectPreviousType(): { type: string; }; export declare const CLEAR_SELECTION = "CLEAR_SELECTION"; export declare function clearSelection(): { type: string; }; export declare const FOCUS_ELEMENT = "FOCUS_ELEMENT"; export declare function focusElement(id: any): { type: string; payload: any; }; export declare const FOCUS_ELEMENT_DONE = "FOCUS_ELEMENT_DONE"; export declare function focusElementDone(id: any): { type: string; payload: any; };