/** * Tournament Review — aggregates multiple sprint scorecards into * a cohesive initiative-level retrospective. */ import type { GolfScorecard, TournamentReview } from './types.js'; export declare function buildTournamentReview(id: string, name: string, scorecards: GolfScorecard[], options?: { takeaways?: string[]; improvements?: string[]; reflection?: string; }): TournamentReview; export declare function formatTournamentReview(review: TournamentReview): string; //# sourceMappingURL=tournament.d.ts.map