import { ControllerResponse } from '../types/common.types.js';
import { ListPullRequestCommentsToolArgsType, CreatePullRequestCommentToolArgsType } from '../tools/atlassian.pullrequests.types.js';
/**
 * List comments on a Bitbucket pull request
 * @param options - Options including workspace slug, repo slug, and pull request ID
 * @returns Promise with formatted pull request comments as Markdown content
 */
declare function listComments(options: ListPullRequestCommentsToolArgsType): Promise<ControllerResponse>;
/**
 * Add a comment to a Bitbucket pull request
 * @param options - Options including workspace slug, repo slug, PR ID, and comment content
 * @returns Promise with a success message as content
 */
declare function addComment(options: CreatePullRequestCommentToolArgsType): Promise<ControllerResponse>;
declare const _default: {
    listComments: typeof listComments;
    addComment: typeof addComment;
};
export default _default;
