import type { ReviewThread } from "../types.mts"; import type { RepoInfo } from "./client.mts"; export interface SuggestionThreadsResult { headRefOid: string; headRefName: string; headRepoWithOwner: string | null; threads: (ReviewThread | null)[]; } export declare function fetchSuggestionThreads(pr: number, repo: RepoInfo, threadIds: readonly string[]): Promise;