/**
 * Registry Metadata API for LLM Integration
 *
 * This module provides metadata about the component registry for LLM consumption.
 */
import { RegistryMetadata } from './types';
/**
 * Get comprehensive metadata about the component registry
 *
 * @returns Registry metadata including counts, categories, and organization
 */
export declare function getRegistryMetadata(): RegistryMetadata;
/**
 * Generate a human-readable summary of the component registry
 *
 * @returns A comprehensive text summary of the registry
 */
export declare function getRegistrySummary(): string;
/**
 * Get a detailed summary for a specific component
 *
 * @param componentId - The ID of the component to summarize
 * @returns Detailed component summary or null if not found
 */
export declare function getComponentDetailedSummary(componentId: string): string | null;
//# sourceMappingURL=registryMetadata.d.ts.map