/** * Check if git is installed */ export declare function isGitInstalled(): Promise; /** * Check if current directory is a git repository (has .git in CWD, not parent) */ export declare function isGitRepo(): Promise; /** * Check if directory is empty (excluding .git and .DS_Store) */ export declare function isDirectoryEmpty(): Promise; /** * Check if a git repo has a remote configured */ export declare function hasRemote(dir: string): Promise; //# sourceMappingURL=git.d.ts.map