export interface PropertyDependency { property: string; displayName: string; dependsOn: DependencyCondition[]; showWhen?: Record; hideWhen?: Record; enablesProperties?: string[]; disablesProperties?: string[]; notes?: string[]; } export interface DependencyCondition { property: string; values: any[]; condition: 'equals' | 'not_equals' | 'includes' | 'not_includes'; description?: string; } export interface DependencyAnalysis { totalProperties: number; propertiesWithDependencies: number; dependencies: PropertyDependency[]; dependencyGraph: Record; suggestions: string[]; } export declare class PropertyDependencies { static analyze(properties: any[]): DependencyAnalysis; private static extractDependency; private static generateConditionDescription; private static generateSuggestions; static getVisibilityImpact(properties: any[], config: Record): { visible: string[]; hidden: string[]; reasons: Record; }; private static checkVisibility; } //# sourceMappingURL=property-dependencies.d.ts.map