import type { EnvironmentName } from '../../beatmap/schema/shared/types/environment.js'; import type { IWrapBasicEvent } from '../../beatmap/schema/wrapper/types/basicEvent.js'; import type { IWrapColorBoostEvent } from '../../beatmap/schema/wrapper/types/colorBoostEvent.js'; import type { ICountEvent } from './types/stats.js'; /** * Count number of type of events with their properties in given array and return a event count object. * ```ts * const list = count(events); * console.log(list); * ``` */ export declare function countEvent(events: TBasicEvent[], boost: TColorBoostEvent[], environment?: EnvironmentName, version?: number): ICountEvent; //# sourceMappingURL=event.d.ts.map