/** * Shared helpers for the fly post-synth checks. Not a check itself, so the * generated barrel skips it (the scanner only picks up exported PostSynthChecks). */ /** * Read an entity or property's constructor props. Nested Declarables * (MachineConfig, MachineMount, Volume) stash their args under a non-enumerable * `props`; a plain inline object carries them directly. Handle both so a check * behaves the same whether the user authored `config: { image }` or * `config: new MachineConfig({ image })`. */ export declare function readProps(value: unknown): Record; /** The entityType of a declarable, or undefined. */ export declare function entityTypeOf(value: unknown): string | undefined; //# sourceMappingURL=fly-helpers.d.ts.map