declare const useGraphActions: (graph: any, editable: boolean) => { graphUndo: { disabled: boolean; visible: boolean; action: () => void; }; graphRedo: { disabled: boolean; visible: boolean; action: () => void; }; autoLayout: { visible: boolean; action: () => void; }; graphZoomUp: { visible: boolean; zoom: number; action: () => void; }; graphZoomDown: { visible: boolean; zoom: number; action: () => void; }; multipleSelect: { disabled: boolean; visible: boolean; action: () => void; }; selectAll: { visible: boolean; action: () => void; }; graphAutoZoom: { visible: boolean; action: () => void; }; }; export default useGraphActions;