export type GitProvider = "github" | "gitlab" | "bitbucket" | "other"; export interface ParsedGitRemote { provider: GitProvider; owner: string; repo: string; host: string; } export declare function parseGitRemoteUrl(url: string): ParsedGitRemote | null;