/** * Wizard endpoints — dashboard renders setup forms from the same * WizardModule specs the CLI uses (ADR-014). Submit writes to the * active workspace's config via the shared config-mutation service, * then hot-reloads so changes take effect without a restart. * * - GET /api/wizards — list every WizardModule spec * - GET /api/wizards/:id — fetch one spec (for form rendering) * - POST /api/wizards/:id/discover — run discovery (probe connectivity, suggest defaults) * - POST /api/wizards/:id — apply a completed result + hot-reload */ import type { IncomingMessage, ServerResponse } from "node:http"; import type { RouteContext } from "../route-context.js"; export declare function handle(req: IncomingMessage, res: ServerResponse, ctx: RouteContext): Promise; //# sourceMappingURL=wizards.d.ts.map