import { PageDashboardChartMetric } from "."; export declare enum ActiveUserDashboardQueryTypes { ActiveUserReader = 0, ActiveUserContributor = 1 } export interface ActiveUserDashboardChartMetric extends PageDashboardChartMetric { } export interface UserActivityDashboardMetricQuery { id: string; months: Array; queryType: ActiveUserDashboardQueryTypes; } export interface ActiveUserDashboardIndicatorResult { [id: string]: ActiveUserDashboardChartMetric; }