/** * WAW029: Invalid DependsOn Target * * Detects two cases in the serialized template: * - Dangling reference: DependsOn target not in template.Resources * - Self-reference: Resource depends on itself */ import type { PostSynthCheck, PostSynthContext, PostSynthDiagnostic } from "@intentius/chant/lint/post-synth"; export declare function checkInvalidDependsOn(ctx: PostSynthContext): PostSynthDiagnostic[]; export declare const waw029: PostSynthCheck; //# sourceMappingURL=waw029.d.ts.map