import { BspLoader } from './bsp.js'; export interface MapStatistics { readonly entityCount: number; readonly surfaceCount: number; readonly lightmapCount: number; readonly vertexCount: number; readonly bounds: { readonly mins: [number, number, number]; readonly maxs: [number, number, number]; }; } export declare class MapAnalyzer { private readonly loader; constructor(loader: BspLoader); getMapStatistics(mapName: string): Promise; getUsedTextures(mapName: string): Promise; getUsedModels(mapName: string): Promise; getUsedSounds(mapName: string): Promise; } //# sourceMappingURL=mapStatistics.d.ts.map