import type { ReviewThread } from "../types.mts"; interface StateKey { owner: string; repo: string; pr: number; } export declare function markReviewInlineThreadMarkers(key: StateKey, threads: readonly ReviewThread[]): Promise; export {};