import type { UncertaintyDecomposition, GovernanceMode, ImmutableCheckResult } from './types.js'; /** * Check all immutable constraints against the current context. * Returns immediately on first violation — these are non-negotiable. */ export declare function checkImmutableConstraints(context: { mode: GovernanceMode; uncertainty: UncertaintyDecomposition; dsConflictCoefficient?: number; consecutiveFailures?: number; contentToCheck?: string; }): ImmutableCheckResult; /** * Check if content contains sensitive data patterns. */ export declare function containsSensitiveData(content: string): boolean; //# sourceMappingURL=immutable.d.ts.map