/** * Runtime version constants for the environment block surfaced by /api/settings. * * The HotMesh SDK version is read from its package.json — node module * resolution finds it in both dev (source) and prod (the runtime image's * node_modules), and resolveJsonModule handles the static import at compile time. */ export declare const HOTMESH_VERSION: string; /** * The long-tail app version. Read from the root package.json at runtime via the * process working directory (which is the app root in both dev and the Docker * image, where CMD runs `node build/index.js` from /app). A static * `../package.json` import would resolve to build/package.json after compile — * a path the Dockerfile does not copy — so this reads from cwd instead. */ export declare const LONG_TAIL_VERSION: string;