import type { AdapterState, AdapterHealth, Observation, ObservationBatch } from "../../types/index.js"; import type { WizardAdapter } from "./types.js"; export declare class WizardAdapterImpl implements WizardAdapter { readonly metadata: { name: string; version: string; kind: "wizard"; category: "planning"; description: string; }; private _state; private _config?; private _health; private defaultActions; get state(): AdapterState; get health(): AdapterHealth; private setHealth; private transition; private hash; discover(): Promise; configure(config: Record): Promise; validate(): Promise; enable(): Promise; disable(): Promise; healthCheck(): Promise; build(): Promise; buildFrom(observations: Observation[]): Promise; } export declare function createWizardAdapter(): WizardAdapterImpl;