import type { GolfScorecard, DispersionReport, AreaReport } from './types.js'; /** * Compute shot dispersion analysis from an array of scorecards. * Returns miss pattern breakdown, dominant direction, and systemic issues. */ export declare function computeDispersion(scorecards: GolfScorecard[]): DispersionReport; /** * Compute area performance analysis from an array of scorecards. * Groups performance by sprint type, club selection, and par value. */ export declare function computeAreaPerformance(scorecards: GolfScorecard[]): AreaReport; //# sourceMappingURL=dispersion.d.ts.map