export declare function isGitInstalledAsync(): Promise; export declare function doesGitRepoExistAsync(cwd: string | undefined): Promise; interface GitStatusOptions { showUntracked: boolean; cwd: string | undefined; } export declare function gitStatusAsync({ showUntracked, cwd }: GitStatusOptions): Promise; export declare function getGitDiffOutputAsync(cwd: string | undefined): Promise; export declare function gitDiffAsync({ withPager, cwd, }: { withPager?: boolean; cwd: string | undefined; }): Promise; export {};