/** * Simple Enhanced Stats Module */ export interface FileStats { filename: string; originalBytes: number; originalTokens: number; tonlBytes: number; tonlTokens: number; byteSavings: string; tokenSavings: string; compressionRatio: number; fileType: 'json' | 'tonl'; processingTime: number; } export declare class EnhancedStats { analyzeFile(filePath: string, options?: any): Promise; } //# sourceMappingURL=simple-enhanced-stats.d.ts.map