import { InputStatsDOptions } from '../report/statsd.js'; export type Metric = { type: 'increment' | 'timing'; name: string; value: number; tags: Record; }; /** * Record number of functions build and differentiate between autogenerated and user generated. * Sends to statsd daemon. */ export declare const reportMetrics: (statsdOpts: InputStatsDOptions, metrics: Metric[]) => Promise;