import { RouteInfo } from '@nestjs/common/interfaces';
import { Request, Response } from 'express';
import { IMetricReporter } from 'readme-metric-reporter';
import { IMetricCollector } from 'readme-metric-reporter-express';
export interface MetricReporterModuleOptions {
    reporter: IMetricReporter;
    collector: IMetricCollector;
    routes: (string | RouteInfo)[];
    excludedRoutes?: (string | RouteInfo)[];
    baseUrl?: string;
    createUUID?(req: Request, res: Response): string;
}
//# sourceMappingURL=metrics-reporter.module-options.d.ts.map