/**
 * Centralized version management for Optix
 * This file reads version from package.json and provides it to the entire application
 */
/**
 * Get the current version from package.json
 * Falls back to a default version if package.json cannot be read
 */
export declare function getVersion(): string;
/**
 * Get version info object with additional metadata
 */
export declare function getVersionInfo(): {
    version: string;
    name: string;
    fullName: string;
    description: string;
    features: string[];
};
/**
 * Reset cached version (useful for testing)
 */
export declare function resetVersionCache(): void;
//# sourceMappingURL=version.d.ts.map