/** * GitHub URL parsing utilities */ /** * Parse GitHub URL or "owner/repo" shorthand into owner and repo components. * Handles: "owner/repo", "https://github.com/owner/repo", "github.com/owner/repo.git" */ declare function parseGitHubUrl(input: string): { owner: string; repo: string; }; export { parseGitHubUrl };