/** * Published package version without local git build metadata. * * Use this for generated files that are committed to repositories, where * checkout-specific SHA noise would make otherwise stable outputs churn. */ export declare const PHOTON_PACKAGE_VERSION: string; /** * Photon runtime version. When running from a git checkout, includes a * `+sha.` build-metadata suffix (semver 2.0 legal) so `photon * --version` distinguishes the dev tree from a published tarball. */ export declare const PHOTON_VERSION: string; /** * True when this process is running from a git checkout rather than an * installed npm tarball. Useful for guidance: agents can warn users when * a dev binary's fixes won't be visible to a photon running against the * published release. */ export declare const IS_DEV_BUILD: boolean; export declare const PHOTON_CORE_VERSION: string; /** * Get the actual installed version of @portel/photon-core * Unlike PHOTON_CORE_VERSION which is a semver range (e.g., "^2.5.0"), * this returns the resolved version (e.g., "2.5.4"). * Used for cache invalidation — detects npm link changes that don't alter the range. */ export declare function getResolvedPhotonCoreVersion(): string; //# sourceMappingURL=version.d.ts.map