import * as azdev from "azure-devops-node-api";
import { TicketProviderRoot } from "./ticketProviderRoot.js";
import { Ticket } from "./index.js";
import { CommonPullRequestInfo } from "../gitProvider/index.js";
export declare class AzureBoardsProvider extends TicketProviderRoot {
    protected serverUrl: string | null;
    protected azureApi: InstanceType<typeof azdev.WebApi>;
    protected teamProject: string | null;
    constructor();
    static isAvailable(): boolean;
    getLabel(): string;
    static getTicketsFromString(text: string, prInfo: CommonPullRequestInfo | null): Promise<Ticket[]>;
    collectTicketsInfo(tickets: Ticket[]): Promise<Ticket[]>;
    postDeploymentComments(tickets: Ticket[], org: string, pullRequestInfo: CommonPullRequestInfo | null): Promise<Ticket[]>;
}
