/** * CLI Version Utility * * Reads version from package.json at runtime to avoid hardcoding. */ /** * Get CLI version from package.json * * Uses multiple strategies to find package.json: * 1. __dirname relative path (for CJS) * 2. Process.cwd() fallback */ export declare function getVersion(): string; /** * Get runtime string (e.g., "node-22.0.0") */ export declare function getRuntime(): string; /** * Get git commit hash if available */ export declare function getCommit(): string | undefined; //# sourceMappingURL=version.d.ts.map