import type { ResourceChange, TerraformState } from '../resources/types.js'; import type { ClassifierFeatures, ClassifierTier } from './decision-tree.js'; import { type SemanticResourceProfile } from './semantic-profile.js'; export type SemanticClassifierTier = ClassifierTier | 'needs-review'; export interface SemanticClassifierResult { tier: SemanticClassifierTier; confidence: number; model: string; evidence: string[]; } export declare function classifyUnknownResourceSemantically(change: ResourceChange, _state: TerraformState | null, features: ClassifierFeatures): SemanticClassifierResult; export declare function classifySemanticProfile(profile: SemanticResourceProfile): SemanticClassifierResult; //# sourceMappingURL=semantic-unknown.d.ts.map