/** * The Urbicon-native A2UI catalog, fully wired: the pure `urbiconA2uiCatalogSpec` * (from the registry module) plus its Svelte half — the `UrbiconA2UINode` * dispatcher and the `createIcons` factory (Basic's 16 icons + 10 curated domain * glyphs). Imports `.svelte`, so — unlike the registry/spec — this module is NOT * server-importable; keep the Svelte-free spec in `a2ui-urbicon-registry.ts`. * * This module lives under `urbicon/` and is only reached when a consumer opts * into the Urbicon catalog (`catalogs={[urbiconA2uiCatalog]}`), so its value code * — dispatcher + every mapped Urbicon primitive — never enters the Basic bundle. */ import type { A2uiCatalog } from '../a2ui-catalog.js'; /** The renderable Urbicon catalog: spec + `UrbiconA2UINode` dispatcher + icon factory. */ export declare const urbiconA2uiCatalog: A2uiCatalog;