import type { OutputFormat } from './render'; import type { AnalyticsResponse, AnalyticsSeriesEntry, QuickRange } from '../rest/analytics'; export declare const rangeLabels: Record; export declare function extractMetrics(entry: AnalyticsSeriesEntry): Record; export declare function findUnit(metricKey: string, metadata?: AnalyticsResponse['metadata']): string; export declare function formatMetricValue(key: string, value: number, format: OutputFormat, metadata?: AnalyticsResponse['metadata']): string; export declare function formatMetricLabel(key: string): string; export declare function formatAnalyticsSection(response: AnalyticsResponse | undefined, range: string, format: OutputFormat): string;