import type { ReviewThread, ReviewThreadComment } from "../types.mts"; export declare function threadComments(thread: { body: string; author: string; authorType?: ReviewThreadComment["authorType"]; authorAssociation?: ReviewThreadComment["authorAssociation"]; viewerDidAuthor?: true; url?: string; createdAtUnix?: number; comments?: Array & { authorType?: ReviewThreadComment["authorType"]; authorAssociation?: ReviewThreadComment["authorAssociation"]; viewerDidAuthor?: true; } & Partial>>; }): ReviewThreadComment[]; export declare function threadTranscriptBody(thread: ReviewThread, appendedBodies?: string[]): string;