export declare type DashboardStatisticDimension = 'day' | 'month' | 'week' | 'year'; export declare 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[]; }