import type { HttpResponse } from '../../../util/http/types';
import type { GitUrlOption } from '../types';
import type { GitLabMergeRequest, GitlabPr, RepoResponse } from './types';
export declare const DRAFT_PREFIX = "Draft: ";
export declare const DRAFT_PREFIX_DEPRECATED = "WIP: ";
export declare const defaults: {
    hostType: string;
    endpoint: string;
    version: string;
};
export declare function prInfo(mr: GitLabMergeRequest): GitlabPr;
export declare function getRepoUrl(repository: string, gitUrl: GitUrlOption | undefined, res: HttpResponse<RepoResponse>): string;
