/** * WGL016: Secrets in Variables * * Detects hardcoded passwords, tokens, or secrets in `variables:` blocks. * These should use CI/CD masked variables instead. */ import type { PostSynthCheck, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkSecretsInVariables(yaml: string): PostSynthDiagnostic[]; export declare const wgl016: PostSynthCheck; //# sourceMappingURL=wgl016.d.ts.map