import type { Ref } from 'vue'; export default function useGitGraph(isDark: Ref): { initTheme: () => void; initGraph: (element: HTMLElement, options: any, isDarkMode: boolean) => void; getGraphId: () => string; };