import type { ContextBundle, LeafDraft, ConfidenceScore } from "../attributes/types.js"; import type { FlowConfidenceScore } from "../flows/types.js"; import type { FlowDescDraft } from "../steps/flows-draft.js"; export declare const DEFAULT_THRESHOLD = 0.8; export declare function getConfidenceThreshold(): number; export declare function scoreAttributeDraft(bundle: ContextBundle, draft: LeafDraft): ConfidenceScore; /** * Score a drafted flow or step description. Description-only scope, so the * factors are intentionally few: shape of the text, presence of contextual * signals the drafter had available, and drafter-error propagation. */ export declare function scoreFlowDescription(d: FlowDescDraft): FlowConfidenceScore; //# sourceMappingURL=confidence.d.ts.map