export interface BuildMeta { version: string; commitHash?: string; branch?: string; } /** * Walk up from this module's location looking for either a generated * `build-meta.json` (production / dist) or the project's `package.json` (dev / * tsx). Location-independent: works regardless of which directory the caller * lives in. Always returns a result — fallback is `{ version: "dev" }`. */ export declare function loadBuildMeta(): BuildMeta;