import type { IntentModel, IntentModelingAdapter, IntentModelingOptions } from "./types.js"; export type { IntentModel, IntentModelingAdapter, IntentModelingOptions }; /** * Build an IntentModel from an approved Genesis artifact. * * @param options The approved artifact and optional adapter. * @returns A deterministic IntentModel. */ export declare function buildIntentModel(options: IntentModelingOptions, adapter?: IntentModelingAdapter): IntentModel;