import { type SeenMarker } from "../state/seen-comments.mts"; import type { MinimizeCommentsPolicy } from "../config/load.mts"; import type { ActionableComment, PrComment } from "../types.mts"; import type { NormalizedBotUsernames } from "./authors.mts"; interface VisibleCommentClassification { actionable: ActionableComment[]; minimizeIds: string[]; toMarkSeen: ActionableComment[]; } export declare function classifyVisibleComments(comments: PrComment[], seenMap: Map, minimizeComments: MinimizeCommentsPolicy | undefined, botUsernames?: NormalizedBotUsernames): VisibleCommentClassification; export {};