/** * First-run setup probe. Tells the dashboard whether to show the * onboarding flow vs. the normal widget grid. * * "Configured" means: a workspace is active AND that workspace's * cortex.yaml has at least one enabled LLM provider. Adapters are * checked separately so the UI can prompt the user to enable one * without blocking the basic flow. * * - GET /api/setup/state */ 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=setup.d.ts.map