import type { Contributor, GitPeriodStats, GitReport } from './types.js'; export interface ParsedGitLog { commits: number; activeDays: number; additions: number; deletions: number; contributorsCount: number; topContributorShare: number; contributors: Contributor[]; daily: GitPeriodStats[]; weekly: GitPeriodStats[]; monthly: GitPeriodStats[]; } interface AnalyzeGitOptions { sinceDays?: number; top?: number; } export declare function parseGitLog(text: string): ParsedGitLog; export declare function analyzeGit(root: string, { sinceDays, top }?: AnalyzeGitOptions): Promise; export {}; //# sourceMappingURL=git.d.ts.map