export type DashboardStatisticDimension = 'day' | 'month' | 'week' | 'year' export type DashboardStatisticType = 'stats' | 'timeline' export interface DashboardStatistic { date: number users: number count: number minutes: number callScore: number rapport: number talkTime: number tags: string[] badges: string[] }