/** * Version utility - dynamically reads version from package.json * This eliminates hardcoded version references throughout the codebase */ /** * Get the current version from package.json * Caches the result for performance */ export declare function getVersion(): string; /** * Get build date as ISO string */ export declare function getBuildDate(): string; /** * Clear the cached version (useful for testing) */ export declare function clearVersionCache(): void; //# sourceMappingURL=version.d.ts.map