export interface GithubAuthResolveOptions { env?: NodeJS.ProcessEnv; envFilePath?: string | null; readTextFile?: (path: string) => string; fileExists?: (path: string) => boolean; } export interface GithubGitAuthOptions extends GithubAuthResolveOptions { /** Test seam; defaults to the active `gh auth` account on github.com. */ readGhToken?: () => string | null; } export declare function githubGitAuthEnv(options?: GithubGitAuthOptions): NodeJS.ProcessEnv; export declare function githubAuthHeaders(options?: GithubAuthResolveOptions): Record; //# sourceMappingURL=github-auth.d.ts.map