export declare const GitHubRepoService: unique symbol; export declare const githubRepoServicePath = "/services/github-repo"; export interface GitHubRepoInfo { owner: string; repo: string; } export interface GitHubRepoService { /** * Gets the GitHub repository information for the given workspace path. * @param workspacePath The absolute path to the workspace directory * @returns GitHub repository info (owner/repo) or undefined if not a GitHub repository */ getGitHubRepoInfo(workspacePath: string): Promise; } //# sourceMappingURL=github-repo-protocol.d.ts.map