/** * Component Registry * Manages available UI components and routes data to appropriate renderers */ import { UIComponent, UIHint } from './types'; export declare class ComponentRegistry { private static components; static get(hint: UIHint): UIComponent | undefined; static register(hint: UIHint, component: UIComponent): void; static has(hint: UIHint): boolean; static inferHint(data: any): UIHint; } //# sourceMappingURL=registry.d.ts.map