/** * The Kit registry (W2 §The Kit). The SPECS (zod schemas, prop classes, * docs, examples) live in `@vendoai/vendo/core` since W3 (the engine consumes them * there); this module owns the React implementations. The registry drift * test asserts `KIT_COMPONENTS` covers exactly `KIT_SPECS`. */ import type { ComponentType } from "react"; export { KIT_SPECS, kitComponentNames, kitSpec, } from "../../core/apps/index.js"; /** Name → React component, for the tree renderer. */ export declare const KIT_COMPONENTS: Readonly>>>;