/** * WAW015: Circular project references * * Detects when child projects form circular references through * nestedStack() declarations. A → B → A would cause infinite recursion * at build time. * * Note: The core build pipeline also detects this and emits a BuildError, * but this lint check provides a clearer diagnostic message. */ import type { PostSynthCheck } from "@intentius/chant/lint/post-synth"; export declare const waw015: PostSynthCheck; //# sourceMappingURL=waw015.d.ts.map