/** * Runtime/application metric hooks for project code. * * @module metrics */ import "../../_dnt.polyfills.js"; import { counter, gauge, histogram } from "./index.js"; export { counter, gauge, histogram, type MetricAttributes, type MetricAttributeValue, type MetricInstrumentOptions, } from "./index.js"; /** Immutable metric recording facade for project code. */ export declare const metrics: Readonly<{ counter: typeof counter; histogram: typeof histogram; gauge: typeof gauge; }>; //# sourceMappingURL=public.d.ts.map