/**
 * Framework configurations for Revolutionary UI Factory
 * All major JavaScript frameworks with latest versions
 */
export interface FrameworkConfig {
    id: string;
    name: string;
    version: string;
    icon: string;
    color: string;
    description: string;
    packageName: string;
    buildTool?: string;
    documentation: string;
}
export declare const FRAMEWORK_CONFIGS: FrameworkConfig[];
export declare const getFrameworkById: (id: string) => FrameworkConfig | undefined;
export declare const getFrameworksByBuildTool: (buildTool: string) => FrameworkConfig[];
export declare const getSupportedFrameworkIds: () => string[];
export declare const frameworkIcons: Record<string, string>;
export declare const frameworkColors: Record<string, string>;
