/** * WAW019: Security Group Unrestricted Ingress * * Flags security groups with 0.0.0.0/0 or ::/0 ingress on sensitive ports * (SSH 22, RDP 3389, MySQL 3306, PostgreSQL 5432). */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkUnrestrictedIngress(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw019: PostSynthCheck; //# sourceMappingURL=waw019.d.ts.map