/** * WGL014: Invalid `extends:` Target * * Detects jobs that `extends:` a template not defined in the pipeline YAML. * GitLab rejects pipelines with unresolved extends references. * * Caveat: when `include:` is present, templates may come from * included files, so the check is skipped. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkInvalidExtends(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const wgl014: PostSynthCheck; //# sourceMappingURL=wgl014.d.ts.map