/** * Git Repository Info Utility * * Parses GitHub owner/repo from git remote origin URL. * Extracted from GitHubSecretsStore (now removed). */ export interface RepoInfo { owner: string; repo: string; } /** * Get repository info from git remote */ export declare function getRepoInfo(): RepoInfo | null; //# sourceMappingURL=git-repo-info.d.ts.map