/**
 * Service for interacting with Confluence comments API
 */
import { ListPageCommentsParams, ListCommentsResponse } from './vendor.atlassian.comments.types.js';
/**
 * List comments for a specific Confluence page
 *
 * @param params - Parameters for the request
 * @returns Response containing the list of comments
 */
declare function listPageComments(params: ListPageCommentsParams): Promise<ListCommentsResponse>;
export declare const atlassianCommentsService: {
    listPageComments: typeof listPageComments;
};
export {};
