import type { GolfScorecard } from './types.js'; import type { SlopeConfig } from './config.js'; /** * Load SLOPE scorecards from the configured directory. * Filters by minSprint and normalizes sprint_number. */ export declare function loadScorecards(config: SlopeConfig, cwd?: string): GolfScorecard[]; /** * Detect the latest sprint number from existing scorecards. * Returns 0 if no scorecards are found. */ export declare function detectLatestSprint(config: SlopeConfig, cwd?: string): number; /** * Resolve the current sprint number: explicit config > auto-detect + 1. */ export declare function resolveCurrentSprint(config: SlopeConfig, cwd?: string): number; //# sourceMappingURL=loader.d.ts.map