/** * Version information and context detection */ export declare const version: string; export interface VersionContext { type: 'dev' | 'local' | 'global'; path?: string; } /** * Format version string with optional context */ export declare function getVersionString(ver: string, context: VersionContext | null): string; //# sourceMappingURL=version.d.ts.map