/** * Heuristically indicates whether a URL looks like a Git repository. * * Blueprint compilers use this to distinguish plugin/theme repository URLs * from downloadable ZIP URLs. This is intentionally a small allowlist of URL * shapes Playground can clone, not a general Git remote detector. */ export declare function seemsLikeGitRepoUrl(url: string): boolean;