import type { Pr } from '../types';
export interface AzurePr extends Pr {
    sourceRefName?: string;
}
export declare const AzurePrVote: {
    readonly NoVote: 0;
    readonly Reject: -10;
    readonly WaitingForAuthor: -5;
    readonly ApprovedWithSuggestions: 5;
    readonly Approved: 10;
};
