import { DockerFileAnalysis } from "./dockerfile/types"; import { ImageName } from "./extractor/image"; import { ImageType, PluginOptions, PluginResponse } from "./types"; export declare function analyzeStatically(targetImage: string, dockerfileAnalysis: DockerFileAnalysis | undefined, imageType: ImageType, imagePath: string, globsToFind: { include: string[]; exclude: string[]; }, options: Partial, imageName?: ImageName): Promise;