/** * Parameter reordering detection. */ import type { AnalyzableNode } from '../types'; import { type ParameterOrderAnalysis } from '../../parameter-analysis'; /** * Detects parameter reordering between two function/method nodes. * Returns the analysis if reordering is detected, null otherwise. */ export declare function detectParameterReordering(oldNode: AnalyzableNode, newNode: AnalyzableNode): ParameterOrderAnalysis | null; //# sourceMappingURL=parameter-reordering.d.ts.map