import { CommentResults } from '../types/index.js'; /** * Get comments for a specific work with threading support * @param workId The work ID to get comments for * @param page The page number (default: 1) * @param proxyUrl Optional proxy URL for the request * @returns Promise The work's comments with threading and pagination info */ export declare function getWorkComments(workId: string, page?: number, proxyUrl?: string): Promise; /** * Get comments for a specific chapter * @param workId The work ID * @param chapterId The chapter ID to get comments for * @param page The page number (default: 1) * @param proxyUrl Optional proxy URL for the request * @returns Promise The chapter's comments with threading and pagination info */ export declare function getChapterComments(workId: string, chapterId: string, page?: number, proxyUrl?: string): Promise;