import { FrameworkLayer, PackageLayer } from '../types/layer-types'; export declare class FrameworkLayerModule { /** * Detect frameworks from package layers */ detectFrameworks(packageLayers: PackageLayer[]): FrameworkLayer[]; /** * Get framework compatibility information */ analyzeCompatibility(frameworks: FrameworkLayer[]): { conflicts: Array<{ framework1: string; framework2: string; reason: string; }>; recommendations: Array<{ message: string; severity: 'info' | 'warning'; }>; }; } //# sourceMappingURL=FrameworkLayerModule.d.ts.map