import type { PullRequest } from "../shared-types"; import { Service } from "../utils/dependency-injector/service"; import type { Repo } from "../utils/repo"; export type PullResponse = { data: { number: number; state: "closed" | "open"; title: string; body: string; created_at: string; updated_at: string; closed_at?: string; merged_at?: string; labels: Array; }[]; }; export declare class PullRequestResolverService extends Service { private git; private githubClient; private config; _parseTagDateTime(gitTagInfo: string, tagName: string): Date; _getLatestVersionTag(): Promise; _getPullRequests(githubRepo: Repo, tagName?: string): Promise; getMerged(githubRepo: Repo): Promise; }