/** * WAW017: Missing Tags on Taggable Resource * * Flags taggable resources that have no Tags property set. * Encourages adding tags for cost allocation and compliance. */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; /** * Core detection logic — exported for direct testing with synthetic data. */ export declare function checkMissingTags(ctx: PostSynthContext, taggable: Set): PostSynthDiagnostic[]; export declare const waw017: PostSynthCheck; //# sourceMappingURL=waw017.d.ts.map