export interface GitHubPullRequestRef { host: string; owner: string; repo: string; number: number; url: string; } export declare function parseGitHubPullRequestRef(prUrl: string): GitHubPullRequestRef | null; export declare function canonicalPullRequestUrl(prUrl: string): string;