import { type Entry } from '../entry/entry.js';
export interface NPlusOneInsight {
    familyHash: string;
    count: number;
    sql: string;
}
/** Group query entries by familyHash; report templates run >= threshold times. */
export declare function detectNPlusOne(entries: Entry[], threshold: number): NPlusOneInsight[];
//# sourceMappingURL=n-plus-one.d.ts.map