import { WebApi } from 'azure-devops-node-api';
import { UpdatePullRequestThreadStatusOptions, UpdatePullRequestThreadStatusResponse } from '../types';
/**
 * Update the status of a pull request comment thread
 *
 * @param connection The Azure DevOps WebApi connection
 * @param projectId The ID or name of the project
 * @param repositoryId The ID or name of the repository (optional)
 * @param pullRequestId The ID of the pull request
 * @param threadId The ID of the thread to update
 * @param options Options containing the new status
 * @returns The updated comment thread
 */
export declare function updatePullRequestThreadStatus(connection: WebApi, projectId: string | undefined, repositoryId: string | undefined, pullRequestId: number, threadId: number, options: UpdatePullRequestThreadStatusOptions): Promise<UpdatePullRequestThreadStatusResponse>;
