import WizSeverity from './WizSeverity';
/**
 * Relevant information from Wiz CVE report included in the review CVEs screen.
 * @author Allison Zhang
 */
declare type WizReportItem = {
    wizURL: string;
    cve: string;
    severity: WizSeverity;
    remediation: string;
    locationPath: string;
    package: string;
    version: string;
    fixedVersion: string;
    advisoryLink: string;
    awsAccount: string;
};
export default WizReportItem;
