import { GitConfig } from './git'; import { WrappedData } from '../types'; export interface CollectorProgress { step: string; done: boolean; } type ProgressCallback = (progress: CollectorProgress) => void; /** * Collect all statistics for a repository (team-level and individual) */ export declare function collectAllStats(config: GitConfig, onProgress?: ProgressCallback): Promise; export {};