import { ControllerResponse } from '../types/common.types.js';
import { CreatePullRequestToolArgsType } from '../tools/atlassian.pullrequests.types.js';
/**
 * Create a new pull request in Bitbucket
 * @param options - Options including workspace slug, repo slug, source branch, target branch, title, etc.
 * @returns Promise with formatted pull request details as Markdown content
 */
declare function add(options: CreatePullRequestToolArgsType): Promise<ControllerResponse>;
declare const _default: {
    add: typeof add;
};
export default _default;
