/** * Depending on the DetectionMechanism the priority of the plugin execution will be determined. */ export declare enum DetectionMechanism { /** POM identified */ POM_IDENTIFICATION = "POM_IDENTIFICATION", /** Uniquely identified */ UNIQUE_IDENTIFICATION = "UNIQUE_IDENTIFICATION", /** Identified by searching for file pattern */ FILE_PATTERN = "FILE_PATTERN", /** Fallback, no specific detection */ FALLBACK = "FALLBACK", /** Ignored for detection */ IGNORE = "IGNORE" } export declare const DetectionOrder: DetectionMechanism[]; export declare function getDetectionPriority(mechanism: DetectionMechanism): number;