import type { IntentModel, IntentModelingAdapter, IntentModelingOptions } from "../types.js"; export declare class RuleBasedIntentModelingAdapter implements IntentModelingAdapter { readonly id = "rule-based-intent-modeler"; readonly version = "1.0.0"; model(options: IntentModelingOptions): IntentModel; }