import { OriginType, TrustLevelType } from '../types.js'; /** * originMap is the deterministic mapping from OriginType to TrustLevelType. * * @remarks * This map defines the **deterministic classification rules** for content segments. * The mapping is based solely on the origin type, not on content analysis. * * **Key Principles:** * - 100% deterministic: same origin → same trust level, always * - No heuristics or content analysis * - All OriginType values must be present in this map */ export declare const originMap: Map; /** * Validates that all OriginType values are mapped in originMap. * * @throws {Error} If any OriginType is not present in originMap */ export declare function validateOriginMap(): void; //# sourceMappingURL=Origin-map.d.ts.map