/** * Resolve the installed hub-launch CLI version from package.json. * * From `dist/utils/version.js` (built) and `src/utils/version.ts` (tsx dev), * `../../package.json` resolves to the package root in both layouts. Any * failure (unreadable/missing package.json, no version field) returns `null` * so callers can degrade safely without throwing. */ export declare function getCliVersion(): string | null; /** * A re-init reminder is warranted when the project is initialized * (a config file exists) but the version that generated it differs from * the running CLI version. A missing recorded version counts as stale * (pre-feature projects). Returns false when the CLI version is unknown * (no reliable comparison) or when the project is uninitialized. */ export declare function isReinitNeeded(params: { configFileExists: boolean; configVersion: string | undefined; cliVersion: string | null; }): boolean; //# sourceMappingURL=version.d.ts.map