export interface IMetricRegistry {
    metrics(): Promise<string>;
    contentType?: any;
    addMetric(metric: any): void;
    collect?(): (req: any, res: any, next: any) => void | Promise<void>;
}
