/** * Data aggregation functions */ import type { DailyStats, MessageJson } from "./types.js"; export declare function aggregateByDate(messages: MessageJson[]): Map; export declare function filterByDays(dailyStats: Map, days: number): Map; export declare function filterByDateRange(dailyStats: Map, since?: string, until?: string): Map; export declare function aggregateByMonth(dailyStats: Map): Map;