/**
 * Scrapes the GitHub advisory page for a CVE and returns the title and
 * description of the CVE.
 * @author Allison Zhang
 * @author Gabe Abrams
 * @param githubLink The URL of the GitHub advisory page for the CVE
 * @returns A promise that contains both the title and description of the CVE
 */
declare const scrapeCVE: (githubLink: string) => Promise<{
    title: string;
    description: string;
}>;
export default scrapeCVE;
