import { ControllerResponse } from '../types/common.types.js';
import { ListPullRequestsToolArgsType } from '../tools/atlassian.pullrequests.types.js';
/**
 * List Bitbucket pull requests with optional filtering options
 * @param options - Options for listing pull requests including workspace slug and repo slug
 * @returns Promise with formatted pull requests list content and pagination information
 */
declare function list(options: ListPullRequestsToolArgsType): Promise<ControllerResponse>;
declare const _default: {
    list: typeof list;
};
export default _default;
