import type { IWrapObstacle } from '../../beatmap/schema/wrapper/types/obstacle.js'; import type { IObstacleCount } from './types/stats.js'; /** * Count number of type of obstacles with their properties in given array and return a obstacle count object. * ```ts * const list = count(walls); * console.log(list); * ``` */ export declare function countObstacle(obstacles: T[], version?: number): IObstacleCount; //# sourceMappingURL=obstacle.d.ts.map