/**
 * UI Component Libraries Configuration for Revolutionary UI Factory
 * Comprehensive list of all installed UI libraries and design systems
 */
export interface UILibraryConfig {
    id: string;
    name: string;
    version: string;
    category: 'component-library' | 'design-system' | 'utility' | 'css-framework';
    description: string;
    documentation: string;
    packageName: string;
    frameworks?: string[];
    features: string[];
    icon?: string;
}
export declare const UI_LIBRARIES: UILibraryConfig[];
export declare const getUILibraryById: (id: string) => UILibraryConfig | undefined;
export declare const getUILibrariesByCategory: (category: string) => UILibraryConfig[];
export declare const getUILibrariesByFramework: (framework: string) => UILibraryConfig[];
