declare const extractPrUrls: (text: string) => readonly { owner: string; repo: string; pr: number; }[]; declare const buildReviewUrl: (pr: { owner: string; repo: string; pr: number; }) => string; export { extractPrUrls, buildReviewUrl };