/** * Git Remote Detection * * Utilities to detect and parse Git remote information from local repositories */ /** * Get Git remote URL from current working directory or specified path */ export declare function getGitRemoteUrl(cwd?: string): string | null; /** * Get normalized GitHub repo path (owner/repo) from current Git remote */ export declare function getGitHubRepoFromRemote(cwd?: string): string | null; /** * Extract Jira project key from current Git branch name */ export declare function getJiraProjectKeyFromBranch(cwd?: string): string | null; //# sourceMappingURL=remote.d.ts.map