/** * Converts a Git Bash absolute path to a Windows absolute path. * Examples: * "/" => "C:\\" * "/c/" => "C:\\" * "/c/Users/foo" => "C:\\Users\\foo" * "/d/bar" => "D:\\bar" */ export declare function gitBashToWindowsPath(path: string, driveLetter?: string): string; /** * * @param path A Windows-style absolute path (e.g., "C:\Users\foo"). * Converts it to a Git Bash-style absolute path (e.g., "/c/Users/foo"). * @returns The Git Bash-style absolute path. */ export declare function windowsToGitBashPath(path: string): string;