/** * FLY011: A machine mount must reference a declared volume. * * Every machine `config.mounts[].volume` must resolve to a `Volume` declared in * the stack. A mount pointing at a volume that does not exist is rejected at * apply time, so catch it at synth. This is a whole-stack check: it reads all * entities in the build (`ctx.entities`), so the mount and the Volume can be * declared in different files. */ import type { PostSynthCheck } from "@intentius/chant/lint/post-synth"; export declare const fly011: PostSynthCheck; //# sourceMappingURL=fly011-mount-references-declared-volume.d.ts.map