export interface SchemaRegistryEntry { id: string; owner: string; maturity: 'stable' | 'lab' | 'advanced' | 'future'; emittedBy: string[]; shape: string; } export declare const SCHEMA_REGISTRY: SchemaRegistryEntry[]; export declare function schemaById(id: string): SchemaRegistryEntry | null; export declare function renderSchemaList(): string; export declare function renderSchemaDetail(entry: SchemaRegistryEntry): string;