import { OnInit } from '@angular/core'; import { VulnerabilitySummary, VulnerabilitySeverity } from '../service/index'; import { TranslateService } from '@ngx-translate/core'; export declare const MIN_TIP_WIDTH = 5; export declare const MAX_TIP_WIDTH = 100; export declare class ResultTipComponent implements OnInit { private translate; _tipTitle: string; _highCount: number; _mediumCount: number; _lowCount: number; _unknownCount: number; _noneCount: number; totalPackages: number; packagesWithVul: number; summary: VulnerabilitySummary; readonly scanLevel: any; constructor(translate: TranslateService); ngOnInit(): void; tipWidth(severity: VulnerabilitySeverity): string; unitText(count: number): string; packageText(count: number): string; readonly completeTimestamp: Date; readonly hasHigh: boolean; readonly hasMedium: boolean; readonly hasLow: boolean; readonly hasUnknown: boolean; readonly hasNone: boolean; readonly tipTitle: string; readonly highCount: number; readonly mediumCount: number; readonly lowCount: number; readonly unknownCount: number; readonly noneCount: number; readonly highSuffix: string; readonly mediumSuffix: string; readonly lowSuffix: string; readonly unknownSuffix: string; readonly noneSuffix: string; readonly maxWidth: string; }