/** * KERNEL_VERSION - Semantic Version * * Must match: * - package.json version * - kernel_metadata.kernel_version in DB * - registry.snapshot.json snapshotVersion * * Semver Policy: * - PATCH = doc-only / tooling-only (no registry shape change) * - MINOR = new concept/value set/value (backwards compatible additive) * - MAJOR = rename/remove/change meaning (breaking change) */ export declare const KERNEL_VERSION: "1.1.0"; /** * SNAPSHOT_ID - Content Hash * * Changes when ANY concept, value set, or value changes. * Used for CI validation against kernel_metadata.snapshot_id. */ export declare const SNAPSHOT_ID: string; /** * Registry metadata for runtime validation */ export declare const KERNEL_REGISTRY_METADATA: { readonly version: "1.1.0"; readonly snapshotId: string; readonly counts: { readonly concepts: 31; readonly valueSets: 12; readonly values: 62; }; readonly generatedAt: "2026-01-01T00:00:00.000Z"; }; /** * Validate that kernel counts match expected values. * Throws if drift is detected. */ export declare function validateKernelIntegrity(): void; //# sourceMappingURL=version.d.ts.map