import type { ContributionData } from './contributions.js'; import type { BusFactorData } from './bus-factor.js'; import type { PRVelocityData } from './pr-velocity.js'; import type { HotspotData } from './hotspots.js'; import type { RepoPersonality } from './personality.js'; export interface SummaryInput { repoName: string; contributions: ContributionData; busFactor: BusFactorData; prVelocity: PRVelocityData; hotspots: HotspotData; personality: RepoPersonality; } /** * Generate a natural language summary paragraph from repo data. */ export declare function generateSummary(input: SummaryInput): string; //# sourceMappingURL=summary.d.ts.map