/** * Classifier module for recoverability prediction. * * Provides ML-based classification for resource types without rule-based handlers, * and validates rule-based verdicts via agreement checking. */ export { classifyFromFeatures, encodeResourceType, RESOURCE_TYPE_ENCODING, type ClassifierFeatures, type ClassifierResult, type ClassifierTier, } from './decision-tree.js'; export { extractFeatures, explainFeatures, } from './feature-extractor.js'; export { classifyUnknownResourceSemantically, classifySemanticProfile, } from './semantic-unknown.js'; export { buildSemanticResourceProfile, isConfigOnlyResource, isRelationshipResource, type SemanticResourceKind, type SemanticResourceProfile, } from './semantic-profile.js'; export { getRecoverabilityDual, isHighConfidence, isClassifierVerdict, formatConfidence, type DualVerdictResult, } from './dual-verdict.js'; export { ConservativeUnknownClassifier, conservativeUnknownClassifier, type UnknownClassificationInput, type UnknownClassificationResult, type UnknownResourceClassifier, } from './unknown-resource.js'; //# sourceMappingURL=index.d.ts.map