/** * Version utilities for centralized version management * * Provides utilities to access package.json version dynamically * as recommended in CLI-REFACTOR-IMPLEMENTATION-GUIDE.md section 4 * * @version 2.1.3 * @author Requirements Gathering Agent Team * @created July 2025 * * @filepath c:\Users\menno\Source\Repos\requirements-gathering-agent\src\utils\version.ts */ /** * Get the current package version from package.json * @returns The version string from package.json */ export declare function getPackageVersion(): string; /** * Get formatted version string with 'v' prefix * @returns Formatted version string (e.g., "v2.1.3") */ export declare function getFormattedVersion(): string; /** * Get the application name and version for display * @returns Formatted application name and version */ export declare function getAppDisplayName(): string; /** * Get legacy RGA display name for backwards compatibility * @returns Formatted legacy name and version */ export declare function getLegacyDisplayName(): string; //# sourceMappingURL=version.d.ts.map