/** * Nested change detection. */ import type { AnalyzableNode, ApiChange, DiffOptions, DiffContext } from '../types'; /** * Detects changes in nested members (properties, methods, etc.). * * @param oldNode - The old parent node * @param newNode - The new parent node * @param options - Diff options * @param depth - Current nesting depth * @param ancestors - Path of ancestor nodes * @param context - Optional diff context with TypeChecker */ export declare function detectNestedChanges(oldNode: AnalyzableNode, newNode: AnalyzableNode, options: Required, depth: number, ancestors: string[], context?: DiffContext): ApiChange[]; //# sourceMappingURL=nested-changes.d.ts.map