export interface Metrics { [propertyName: string]: { [propertyName: string]: number; }; } export interface BucketHash { [le: string]: number; } export declare function fetchMetrics(metricUri: string, node_name?: string): Promise; export declare function getHistogramBuckets(metricUri: string, metricName: string): Promise; export declare function getMetricName(metricName: string): string; export declare function getProcessStartTimeKey(prefix?: string): string;