import { Octokit } from "@octokit/rest"; import type { AuthMethod } from "../types/index.js"; export type GitHubClientOptions = { auth: AuthMethod; token?: string; }; export declare const createGitHubClient: (options: GitHubClientOptions) => Octokit; export declare const parseRepoString: (repo: string) => { owner: string; repo: string; }; export declare const inferRepoFromGit: () => { owner: string; repo: string; } | null; export declare const inferPrFromBranch: (octokit: Octokit, owner: string, repo: string) => Promise; //# sourceMappingURL=client.d.ts.map