export declare const useGit: () => {
  currentBranchGet: () => Promise<string>;
  currentBranchStatusGet: () => Promise<string>;
  gitRootPathGet: () => Promise<string>;
  stageFilesGet: () => Promise<string[]>;
};