/** * Grype Security Scanner Implementation * * Integrates with Grype CLI for container image vulnerability scanning. * Grype is an open-source vulnerability scanner maintained by Anchore. * * @see https://github.com/anchore/grype */ import type { Logger } from 'pino'; import { Result } from '../../types/index.js'; import type { BasicScanResult } from './scanner.js'; /** * Check if Grype is installed and accessible */ export declare function checkGrypeAvailability(logger: Logger): Promise>; /** * Scan a Docker image using Grype */ export declare function scanImageWithGrype(imageId: string, logger: Logger): Promise>; //# sourceMappingURL=grype-scanner.d.ts.map