import { WebApi } from 'azure-devops-node-api';
import { GetWorkItemCommentsOptions, CommentList } from '../types';
/**
 * Get comments for a work item
 *
 * @param connection The Azure DevOps WebApi connection
 * @param options Options for getting work item comments
 * @returns The list of work item comments
 */
export declare function getWorkItemComments(connection: WebApi, options: GetWorkItemCommentsOptions): Promise<CommentList>;
