interface ExtractedDeclaration { name: string; kind: 'interface' | 'type' | 'const'; code: string; } interface SchemaFieldMeta { name: string; type: string; required: boolean; description?: string; defaultValue?: string; } declare function getRegistryTypes(): Record; declare function getRegistrySchemaFields(): Record; export { getRegistrySchemaFields, getRegistryTypes }; export type { ExtractedDeclaration, SchemaFieldMeta };