export interface GhRepoInfo { description: string; topics: string[]; isAdmin: boolean; } export interface GhClient { getRepo(owner: string, name: string): Promise; editRepo(owner: string, name: string, description: string, topics: readonly string[]): Promise; } export declare const realGhClient: GhClient; export declare function parseOwnerRepoFromUrl(url: string): { owner: string; repo: string; } | null; //# sourceMappingURL=gh.d.ts.map