/** * Vendored snapshot of well-known GitLab CI include/component source projects, * used by the look-alike check (WGL032) as the reference set: an `include` or * `component` source that is a near-miss (edit distance 1–2) of one of these — * but not an exact match — is likely a typo or an impersonation. * * Advisory only. Refresh source: GitLab-maintained CI templates and the popular * CI/CD Catalog components. Accept staleness — a stale entry only weakens * look-alike detection, it never blocks a build. */ export declare const KNOWN_INCLUDE_SOURCES: readonly string[]; /** Levenshtein edit distance, capped: returns early once it exceeds `max`. */ export declare function editDistance(a: string, b: string, max: number): number; //# sourceMappingURL=known-include-sources.d.ts.map