export interface FileStats { modified: number; added: number; deleted: number; untracked: number; } export interface GitStatus { branch: string; isDirty: boolean; ahead: number; behind: number; fileStats?: FileStats; } export declare function getGitBranch(cwd?: string): Promise; export declare function getGitStatus(cwd?: string): Promise; //# sourceMappingURL=git.d.ts.map